Searched refs:function_code (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A Dservice_resolver_32.cc209 ServiceEntry function_code; local
211 if (!::ReadProcessMemory(process_, target_, &function_code,
212 sizeof(function_code), &read))
215 if (sizeof(function_code) != read)
218 if (kMovEax != function_code.mov_eax ||
219 kMovEdx != function_code.mov_edx ||
220 (kCallPtrEdx != function_code.call_ptr_edx &&
221 kCallEdx != function_code.call_ptr_edx) ||
222 kRet != function_code.ret)
226 if (kCallEdx != function_code
322 ServiceEntry function_code; local
357 Wow64Entry function_code; local
383 Wow64EntryW8 function_code; local
404 ServiceEntryW8 function_code; local
[all...]
H A Dservice_resolver_64.cc144 ServiceFullThunk function_code; local
146 if (!::ReadProcessMemory(process_, target_, &function_code,
147 sizeof(function_code), &read))
150 if (sizeof(function_code) != read)
153 if (!IsService(&function_code)) {
155 ServiceEntryW8* w8_service = &function_code.original_w8;
164 memcpy(local_thunk, &function_code, sizeof(function_code));
/external/chromium_org/sandbox/win/wow_helper/
H A Dservice64_resolver.cc259 ServiceEntry function_code; local
261 if (!::ReadProcessMemory(process_, target_, &function_code,
262 sizeof(function_code), &read))
265 if (sizeof(function_code) != read)
268 if (kMmovR10EcxMovEax != function_code.mov_r10_ecx_mov_eax ||
269 kSyscall != function_code.syscall || kRetNp != function_code.ret)
273 memcpy(local_thunk, &function_code, sizeof(function_code));
/external/chromium_org/v8/src/
H A Dliveedit.h291 void SetFunctionCode(Handle<Code> function_code,
H A Dliveedit.cc626 void FunctionInfoWrapper::SetFunctionCode(Handle<Code> function_code, argument
628 Handle<JSValue> code_wrapper = WrapInJSValue(function_code);
730 void FunctionCode(Handle<Code> function_code) { argument
735 info.SetFunctionCode(function_code,
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_fcr.c520 void l2c_fcr_send_S_frame (tL2C_CCB *p_ccb, UINT16 function_code, UINT16 pf_bit) argument
537 p_ccb->fcrb.s_frames_sent[function_code]++;
549 ctrl_word = (function_code << L2CAP_FCR_SUP_SHIFT) | L2CAP_FCR_S_FRAME_BIT;
623 p_ccb->local_cid, function_code);
H A Dl2c_int.h748 extern void l2c_fcr_send_S_frame (tL2C_CCB *p_ccb, UINT16 function_code, UINT16 pf_bit);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc14065 i::Code* function_code = i::Code::GetCodeFromTargetAddress( local
14067 CHECK(function_code != NULL);
14078 if (!bar_func_.is_null() && function_code == bar_func_->code()) {
14081 symbol_locations_.find(function_code->instruction_start()));
14085 if (!foo_func_.is_null() && function_code == foo_func_->code()) {
14088 symbol_locations_.find(function_code->instruction_start()));
19734 const char* function_code = local
19744 CompileRun(function_code);
19754 CompileRun(function_code);
19774 const char* function_code local
19802 const char* function_code = local
[all...]

Completed in 382 milliseconds