Lines Matching refs:GetIsolate

140   Isolate* GetIsolate() { return isolate_; }  in GetIsolate()  function in JsHttpRequestProcessor
158 HandleScope scope(args.GetIsolate()); in LogCallback()
169 HandleScope handle_scope(GetIsolate()); in Initialize()
173 Local<ObjectTemplate> global = ObjectTemplate::New(GetIsolate()); in Initialize()
174 global->Set(String::NewFromUtf8(GetIsolate(), "log", NewStringType::kNormal) in Initialize()
176 FunctionTemplate::New(GetIsolate(), LogCallback)); in Initialize()
183 v8::Local<v8::Context> context = Context::New(GetIsolate(), NULL, global); in Initialize()
184 context_.Reset(GetIsolate(), context); in Initialize()
201 String::NewFromUtf8(GetIsolate(), "Process", NewStringType::kNormal) in Initialize()
216 process_.Reset(GetIsolate(), process_fun); in Initialize()
224 HandleScope handle_scope(GetIsolate()); in ExecuteScript()
228 TryCatch try_catch(GetIsolate()); in ExecuteScript()
230 Local<Context> context(GetIsolate()->GetCurrentContext()); in ExecuteScript()
256 HandleScope handle_scope(GetIsolate()); in InstallMaps()
262 v8::Local<v8::Context>::New(GetIsolate(), context_); in InstallMaps()
267 String::NewFromUtf8(GetIsolate(), "options", NewStringType::kNormal) in InstallMaps()
275 String::NewFromUtf8(GetIsolate(), "output", NewStringType::kNormal) in InstallMaps()
286 HandleScope handle_scope(GetIsolate()); in Process()
289 v8::Local<v8::Context>::New(GetIsolate(), context_); in Process()
299 TryCatch try_catch(GetIsolate()); in Process()
306 v8::Local<v8::Function>::New(GetIsolate(), process_); in Process()
339 EscapableHandleScope handle_scope(GetIsolate()); in WrapMap()
344 Local<ObjectTemplate> raw_template = MakeMapTemplate(GetIsolate()); in WrapMap()
345 map_template_.Reset(GetIsolate(), raw_template); in WrapMap()
348 Local<ObjectTemplate>::New(GetIsolate(), map_template_); in WrapMap()
352 templ->NewInstance(GetIsolate()->GetCurrentContext()).ToLocalChecked(); in WrapMap()
356 Local<External> map_ptr = External::New(GetIsolate(), obj); in WrapMap()
405 String::NewFromUtf8(info.GetIsolate(), value.c_str(), in MapGet()
453 EscapableHandleScope handle_scope(GetIsolate()); in WrapRequest()
458 Local<ObjectTemplate> raw_template = MakeRequestTemplate(GetIsolate()); in WrapRequest()
459 request_template_.Reset(GetIsolate(), raw_template); in WrapRequest()
462 Local<ObjectTemplate>::New(GetIsolate(), request_template_); in WrapRequest()
466 templ->NewInstance(GetIsolate()->GetCurrentContext()).ToLocalChecked(); in WrapRequest()
470 Local<External> request_ptr = External::New(GetIsolate(), request); in WrapRequest()
504 String::NewFromUtf8(info.GetIsolate(), path.c_str(), in GetPath()
516 String::NewFromUtf8(info.GetIsolate(), path.c_str(), in GetReferrer()
527 String::NewFromUtf8(info.GetIsolate(), path.c_str(), in GetHost()
539 String::NewFromUtf8(info.GetIsolate(), path.c_str(), in GetUserAgent()