HomeSort by relevance Sort by last modified time
    Searched refs:entry_point (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/sandbox/win/sandbox_poc/
sandbox.cc 19 std::string * entry_point,
22 DCHECK(entry_point);
24 if (!dll_name || !entry_point || !log_file)
40 *entry_point = std::string(entry_point_wide.begin(), entry_point_wide.end());
128 std::string dll_name, entry_point; local
132 &entry_point,
162 (lpfnInit) ::GetProcAddress(dll_module, entry_point.c_str());
main_ui_window.cc 323 wchar_t entry_point[MAX_PATH]; local
328 entry_point, MAX_PATH);
359 entry_point_ = entry_point;
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_gentable.py 134 snprintf(symboln, sizeof(symboln), "%%s%(entry_point)s", symbol_prefix);
176 for entry_point in f.entry_points:
177 vars = { 'entry_point' : entry_point,
  /external/mesa3d/src/mapi/glapi/gen/
gl_gentable.py 134 snprintf(symboln, sizeof(symboln), "%%s%(entry_point)s", symbol_prefix);
176 for entry_point in f.entry_points:
177 vars = { 'entry_point' : entry_point,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_scb_types.h 121 entry_point, /* REQUIRED */
306 entry_point, /* REQUIRED */
374 entry_point, /* REQUIRED */
438 entry_point, /* REQUIRED */
495 entry_point, /* REQUIRED */
729 entry_point, /* REQUIRED */
775 entry_point, /* REQUIRED */
880 entry_point,
926 entry_point,
1065 entry_point, /* REQUIRED *
    [all...]
cs46xx_dsp_task_types.h 113 entry_point,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_scb_types.h 121 entry_point, /* REQUIRED */
306 entry_point, /* REQUIRED */
374 entry_point, /* REQUIRED */
438 entry_point, /* REQUIRED */
495 entry_point, /* REQUIRED */
729 entry_point, /* REQUIRED */
775 entry_point, /* REQUIRED */
880 entry_point,
926 entry_point,
1065 entry_point, /* REQUIRED *
    [all...]
cs46xx_dsp_task_types.h 113 entry_point,
  /external/chromium_org/v8/src/
log.h 234 void CallbackEvent(Name* name, Address entry_point);
235 void GetterCallbackEvent(Name* name, Address entry_point);
236 void SetterCallbackEvent(Name* name, Address entry_point);
391 Address entry_point);
483 virtual void CallbackEvent(Name* name, Address entry_point) = 0;
484 virtual void GetterCallbackEvent(Name* name, Address entry_point) = 0;
485 virtual void SetterCallbackEvent(Name* name, Address entry_point) = 0;
521 virtual void CallbackEvent(Name* name, Address entry_point) { }
522 virtual void GetterCallbackEvent(Name* name, Address entry_point) { }
523 virtual void SetterCallbackEvent(Name* name, Address entry_point) { }
    [all...]
cpu-profiler.h 212 virtual void CallbackEvent(Name* name, Address entry_point);
232 virtual void GetterCallbackEvent(Name* name, Address entry_point);
234 virtual void SetterCallbackEvent(Name* name, Address entry_point);
cpu-profiler.cc 197 void CpuProfiler::CallbackEvent(Name* name, Address entry_point) {
201 rec->start = entry_point;
330 void CpuProfiler::GetterCallbackEvent(Name* name, Address entry_point) {
334 rec->start = entry_point;
359 void CpuProfiler::SetterCallbackEvent(Name* name, Address entry_point) {
363 rec->start = entry_point;
log.cc 1100 Address entry_point) {
1106 msg.AppendAddress(entry_point);
1126 void Logger::CallbackEvent(Name* name, Address entry_point) {
1127 PROFILER_LOG(CallbackEvent(name, entry_point));
1128 CallbackEventInternal("", name, entry_point);
1132 void Logger::GetterCallbackEvent(Name* name, Address entry_point) {
1133 PROFILER_LOG(GetterCallbackEvent(name, entry_point))
1744 Address entry_point = v8::ToCData<Address>(callback_obj); local
    [all...]
  /external/chromium_org/sandbox/win/src/
target_process.cc 48 void* GetBaseAddress(const wchar_t* exe_name, void* entry_point) {
59 char* base = reinterpret_cast<char*>(entry_point) -
186 void* entry_point = reinterpret_cast<void*>(context.Rcx); local
191 void* entry_point = reinterpret_cast<void*>(context.Eax); local
201 base_address_ = GetBaseAddress(exe_path, entry_point);
  /external/chromium_org/chrome/app/
client_util.cc 183 DLL_MAIN entry_point = local
185 if (!entry_point)
188 int rc = entry_point(instance, sbox_info);
  /external/v8/src/
log.h 215 void CallbackEvent(String* name, Address entry_point);
216 void GetterCallbackEvent(String* name, Address entry_point);
217 void SetterCallbackEvent(String* name, Address entry_point);
321 Address entry_point);
cpu-profiler.h 225 static void CallbackEvent(String* name, Address entry_point);
243 static void GetterCallbackEvent(String* name, Address entry_point);
245 static void SetterCallbackEvent(String* name, Address entry_point);
cpu-profiler.cc 345 void CpuProfiler::CallbackEvent(String* name, Address entry_point) {
347 Logger::CALLBACK_TAG, CodeEntry::kEmptyNamePrefix, name, entry_point);
428 void CpuProfiler::GetterCallbackEvent(String* name, Address entry_point) {
430 Logger::CALLBACK_TAG, "get ", name, entry_point);
444 void CpuProfiler::SetterCallbackEvent(String* name, Address entry_point) {
446 Logger::CALLBACK_TAG, "set ", name, entry_point);
log.cc 827 Address entry_point) {
833 msg.AppendAddress(entry_point);
840 void Logger::CallbackEvent(String* name, Address entry_point) {
844 CallbackEventInternal("", *str, entry_point);
848 void Logger::GetterCallbackEvent(String* name, Address entry_point) {
852 CallbackEventInternal("get ", *str, entry_point);
856 void Logger::SetterCallbackEvent(String* name, Address entry_point) {
860 CallbackEventInternal("set ", *str, entry_point);
1571 Address entry_point = v8::ToCData<Address>(callback_obj); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 350 entry_point = '--entry _DllMain@12'
352 entry_point = ''
360 entry_point))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 350 entry_point = '--entry _DllMain@12'
352 entry_point = ''
360 entry_point))

Completed in 598 milliseconds