Lines Matching defs:params
228 void SetIsolateCreateParamsForNode(Isolate::CreateParams* params) {
234 params->constraints.max_old_generation_size_in_bytes() == 0) {
238 params->constraints.ConfigureDefaults(total_memory, 0);
240 params->embedder_wrapper_object_index = BaseObject::InternalFields::kSlot;
241 params->embedder_wrapper_type_index = std::numeric_limits<int>::max();
244 params->code_event_handler = vTune::GetVtuneCodeEventHandler();
324 // careful about what we override in the params.
325 Isolate* NewIsolate(Isolate::CreateParams* params,
337 static Isolate::CreateParams first_params = *params;
338 params->snapshot_blob = first_params.snapshot_blob;
339 params->external_references = first_params.external_references;
347 SetIsolateCreateParamsForNode(params);
348 Isolate::Initialize(isolate, *params);
363 Isolate::CreateParams params;
364 if (allocator != nullptr) params.array_buffer_allocator = allocator;
365 return NewIsolate(¶ms, event_loop, platform);
371 Isolate::CreateParams params;
372 if (allocator) params.array_buffer_allocator_shared = allocator;
373 return NewIsolate(¶ms, event_loop, platform);