• Home
  • Raw
  • Download

Lines Matching refs:GetIsolate

132   Isolate* GetIsolate() { return isolate_; }  in GetIsolate()  function in JsHttpRequestProcessor
150 HandleScope scope(args.GetIsolate()); in LogCallback()
161 HandleScope handle_scope(GetIsolate()); in Initialize()
165 Handle<ObjectTemplate> global = ObjectTemplate::New(GetIsolate()); in Initialize()
166 global->Set(String::NewFromUtf8(GetIsolate(), "log"), in Initialize()
167 FunctionTemplate::New(GetIsolate(), LogCallback)); in Initialize()
174 v8::Handle<v8::Context> context = Context::New(GetIsolate(), NULL, global); in Initialize()
175 context_.Reset(GetIsolate(), context); in Initialize()
191 Handle<String> process_name = String::NewFromUtf8(GetIsolate(), "Process"); in Initialize()
203 process_.Reset(GetIsolate(), process_fun); in Initialize()
211 HandleScope handle_scope(GetIsolate()); in ExecuteScript()
241 HandleScope handle_scope(GetIsolate()); in InstallMaps()
247 v8::Local<v8::Context>::New(GetIsolate(), context_); in InstallMaps()
250 context->Global()->Set(String::NewFromUtf8(GetIsolate(), "options"), in InstallMaps()
254 context->Global()->Set(String::NewFromUtf8(GetIsolate(), "output"), in InstallMaps()
263 HandleScope handle_scope(GetIsolate()); in Process()
266 v8::Local<v8::Context>::New(GetIsolate(), context_); in Process()
283 v8::Local<v8::Function>::New(GetIsolate(), process_); in Process()
316 EscapableHandleScope handle_scope(GetIsolate()); in WrapMap()
321 Handle<ObjectTemplate> raw_template = MakeMapTemplate(GetIsolate()); in WrapMap()
322 map_template_.Reset(GetIsolate(), raw_template); in WrapMap()
325 Local<ObjectTemplate>::New(GetIsolate(), map_template_); in WrapMap()
332 Handle<External> map_ptr = External::New(GetIsolate(), obj); in WrapMap()
379 info.GetIsolate(), value.c_str(), String::kNormalString, in MapGet()
425 EscapableHandleScope handle_scope(GetIsolate()); in WrapRequest()
430 Handle<ObjectTemplate> raw_template = MakeRequestTemplate(GetIsolate()); in WrapRequest()
431 request_template_.Reset(GetIsolate(), raw_template); in WrapRequest()
434 Local<ObjectTemplate>::New(GetIsolate(), request_template_); in WrapRequest()
441 Handle<External> request_ptr = External::New(GetIsolate(), request); in WrapRequest()
475 info.GetIsolate(), path.c_str(), String::kNormalString, in GetPath()
486 info.GetIsolate(), path.c_str(), String::kNormalString, in GetReferrer()
496 info.GetIsolate(), path.c_str(), String::kNormalString, in GetHost()
507 info.GetIsolate(), path.c_str(), String::kNormalString, in GetUserAgent()