Lines Matching defs:settings
236 // to be sent to the connected peer. The settings are set using a TypedArray
291 // Updates the shared TypedArray with the current remote or local settings for
303 // Initializes the shared TypedArray with the default settings values.
340 // settings.
1559 BaseObjectPtr<Http2Settings> settings = PopSettings();
1560 if (settings) {
1561 settings->Done(true);
2564 // Serializes the settings object into a Buffer instance that
2615 // values established for each of the settings so those can be read in JS land.
2621 Debug(session, "settings refreshed for session");
3050 BaseObjectPtr<Http2Settings> settings;
3052 settings = std::move(outstanding_settings_.front());
3054 DecrementCurrentSessionMemory(sizeof(*settings));
3056 return settings;
3067 BaseObjectPtr<Http2Settings> settings =
3069 if (!settings)
3073 settings->Done(false);
3077 IncrementCurrentSessionMemory(sizeof(*settings));
3078 settings->Send();
3079 outstanding_settings_.emplace(std::move(settings));
3156 SET_FUNCTION(2, settings)
3273 SetProtoMethod(isolate, session, "settings", Http2Session::Settings);