Searched defs:target_function (Results 1 - 6 of 6) sorted by relevance

/external/libchrome/sandbox/win/src/sidestep/
H A Dpreamble_patcher.h61 // Patches target_function to point to replacement_function using a provided
65 static SideStepError Patch(T target_function, T replacement_function, argument
67 return RawPatchWithStub(target_function, replacement_function,
82 // target_function: A pointer to the function that should be
102 static SideStepError RawPatchWithStub(void* target_function,
H A Dpreamble_patcher_with_stub.cpp52 void* target_function,
57 if ((NULL == target_function) ||
82 unsigned char* target = reinterpret_cast<unsigned char*>(target_function);
170 // Inv: The memory pointed to by target_function now points to a relative
51 RawPatchWithStub( void* target_function, void* replacement_function, unsigned char* preamble_stub, size_t stub_size, size_t* bytes_needed) argument
/external/v8/src/compiler/
H A Djs-call-reducer.cc349 Node* target_function = local
352 // Check that the {target} is still the {target_function}.
354 graph()->NewNode(javascript()->StrictEqual(), target, target_function,
366 // Specialize the JSCallFunction node to the {target_function}.
367 NodeProperties::ReplaceValueInput(node, target_function, 0);
498 Node* target_function = local
501 // Check that the {target} is still the {target_function}.
503 graph()->NewNode(javascript()->StrictEqual(), target, target_function,
515 // Specialize the JSCallConstruct node to the {target_function}.
516 NodeProperties::ReplaceValueInput(node, target_function,
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_disasm.c302 char *target_function[16] = { variable
1161 err |= control (file, "target function", target_function,
/external/v8/src/
H A Dfactory.cc1958 Handle<JSReceiver> target_function, Handle<Object> bound_this,
1960 DCHECK(target_function->IsCallable());
1968 // Determine the prototype of the {target_function}.
1971 Object::GetPrototype(isolate(), target_function), local
1987 target_function->IsConstructor()
1996 DCHECK_EQ(target_function->IsConstructor(), map->is_constructor());
2001 result->set_bound_target_function(*target_function);
1957 NewJSBoundFunction( Handle<JSReceiver> target_function, Handle<Object> bound_this, Vector<Handle<Object>> bound_args) argument
/external/v8/test/cctest/
H A Dtest-api.cc19762 Local<Function> target_function; local
19765 target_function = CompileRun("function foo() {}; foo").As<Function>();
19772 ->Set(context2, v8_str("foo"), target_function)

Completed in 331 milliseconds