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

  /external/chromium/base/
tracked.h 42 Location(const char* function_name, const char* file_name, int line_number)
43 : function_name_(function_name),
67 const char* function_name() const { return function_name_; } function in class:tracked_objects::Location
iat_patch.h 27 // function_name Name of the API to be intercepted
38 const char* function_name,
84 // imported_from_module Module that exports the 'function_name'
85 // function_name Name of the API to be intercepted
97 const char* function_name,
iat_patch.cc 13 const char* function_name; member in struct:iat_patch::InterceptFunctionInformation
54 (0 == lstrcmpiA(name, intercept_information->function_name))) {
84 const char* function_name, void* new_function,
88 (NULL == function_name) || (NULL == new_function)) {
102 function_name,
187 const char* function_name,
202 function_name,
process_util_linux.cc 554 #define DIE_ON_OOM_1(function_name) \
555 void* function_name(size_t) __attribute__ ((visibility("default"))); \
557 void* function_name(size_t size) { \
558 void* ret = __libc_##function_name(size); \
564 #define DIE_ON_OOM_2(function_name, arg1_type) \
565 void* function_name(arg1_type, size_t) \
568 void* function_name(arg1_type arg1, size_t size) { \
569 void* ret = __libc_##function_name(arg1, size); \
pe_image.cc 144 FARPROC PEImage::GetProcAddress(LPCSTR function_name) const {
145 PDWORD export_entry = GetExportEntry(function_name);
166 bool PEImage::GetProcOrdinal(LPCSTR function_name, WORD *ordinal) const {
175 if (IsOrdinal(function_name)) {
176 *ordinal = ToOrdinal(function_name);
188 cmp = strcmp(function_name, name);
pe_image.h 141 FARPROC GetProcAddress(LPCSTR function_name) const;
145 bool GetProcOrdinal(LPCSTR function_name, WORD *ordinal) const;
tracked_objects.cc 717 if (left.location().function_name() != right.location().function_name()) {
718 int comp = strcmp(left.location().function_name(),
719 right.location().function_name());
777 if (left.location().function_name() != right.location().function_name()) {
778 int comp = strcmp(left.location().function_name(),
779 right.location().function_name());
823 if (!strstr(sample.location().function_name(), required_.c_str()))
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Thread.h 38 OMX_ERRORTYPE SEC_OSAL_ThreadCreate(OMX_HANDLETYPE *threadHandle, OMX_PTR function_name, OMX_PTR argument);
SEC_OSAL_Thread.c 52 OMX_ERRORTYPE SEC_OSAL_ThreadCreate(OMX_HANDLETYPE *threadHandle, OMX_PTR function_name, OMX_PTR argument)
78 result = pthread_create(&thread->pthread, &thread->attr, function_name, (void *)argument);
  /external/v8/tools/
windows-tick-processor.py 68 function_name = "::".join(substrings)
69 return function_name
  /external/e2fsprogs/ext2ed/
main.c 537 void internal_error (char *description,char *source_name,char *function_name)
539 wprintw (command_win,"Internal error - Found by source: %s.c , function: %s\n",source_name,function_name);
ext2ed.h 297 extern void internal_error (char *description,char *source_name,char *function_name);
  /external/v8/src/
scopeinfo.h 77 Handle<String> function_name() const { return function_name_; } function in class:v8::internal::BASE_EMBEDDED
parser.cc 3693 Handle<String> function_name = factory()->EmptySymbol(); local
    [all...]
debug.cc 1659 Handle<String> function_name = local
    [all...]
  /build/tools/releasetools/
common.py 618 def _DoCall(self, function_name, *args, **kwargs):
624 if self.module is None or not hasattr(self.module, function_name):
626 return getattr(self.module, function_name)(*((self,) + args), **kwargs)
  /external/v8/test/cctest/
test-debug.cc 165 const char* function_name) {
168 (*env)->Global()->Get(v8::String::New(function_name)));
174 const char* function_name) {
177 v8::Context::GetCurrent()->Global()->Get(v8::String::New(function_name)));
210 static int SetBreakPointFromJS(const char* function_name,
215 function_name, line, position);
604 v8::Handle<v8::String> function_name(result->ToString());
605 function_name->WriteAscii(last_function_hit);
832 v8::String::AsciiValue function_name(result->ToString());
833 CHECK_EQ(1, StrLength(*function_name));
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
cpp.py 288 def begin(self, function_name):
292 function_name: The name of the function being tracked.
296 self.current_function = function_name
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc 943 String* function_name = NULL; local
    [all...]
  /external/v8/src/x64/
stub-cache-x64.cc 786 String* function_name = NULL; local
788 function_name = String::cast(function->shared()->name());
790 return GetCode(CONSTANT_FUNCTION, function_name);
    [all...]
  /external/v8/src/ia32/
stub-cache-ia32.cc 1366 String* function_name = NULL; local
    [all...]

Completed in 467 milliseconds