Lines Matching defs:Process
71 // Process a single request.
72 virtual bool Process(HttpRequest* req) = 0;
84 // Process function of the JavaScript script given as an argument.
91 virtual bool Process(HttpRequest* req);
95 // Process function. Returns true if this succeeded, otherwise false.
154 // Execute the script and fetch the Process method.
188 // Process function from the global object.
190 String::NewFromUtf8(GetIsolate(), "Process", NewStringType::kNormal)
193 // If there is no Process function, or if it is not a function,
273 bool JsHttpRequestProcessor::Process(HttpRequest* request) {
287 // Set up an exception handler before calling the Process function
290 // Invoke the process function, giving the global object as 'this'
294 v8::Local<v8::Function> process =
297 if (!process->Call(context, context->Global(), argc, argv).ToLocal(&result)) {
649 StringHttpRequest("/process.cc", "localhost", "google.com", "firefox"),
661 bool result = processor->Process(&reqs[i]);