Home
last modified time | relevance | path

Searched refs:function (Results 1 – 13 of 13) sorted by relevance

/art/runtime/gc/allocator/
Ddlmalloc.cc27 static void art_heap_corruption(const char* function);
28 static void art_heap_usage_error(const char* function, void* p);
41 static void art_heap_corruption(const char* function) { in art_heap_corruption() argument
42 LOG(FATAL) << "Corrupt heap detected in: " << function; in art_heap_corruption()
45 static void art_heap_usage_error(const char* function, void* p) { in art_heap_usage_error() argument
46 LOG(FATAL) << "Incorrect use of function '" << function << "' argument " << p << " not expected"; in art_heap_usage_error()
/art/runtime/arch/arm/
Dasm_support_arm.S35 .type \name, #function
47 .type \name, #function
59 .type \name, #function
73 .type \name, #function
Dquick_entrypoints_arm.S1127 .type art_quick_instrumentation_exit, #function
/art/test/117-nopatchoat/
Dexpected.txt3 This is a function call
6 This is a function call
9 This is a function call
/art/runtime/arch/arm64/
Dasm_support_arm64.S46 .type \name, #function
56 .type \name, #function
/art/runtime/arch/mips/
Dasm_support_mips.S32 .type \name, %function
/art/runtime/arch/x86_64/
Dasm_support_x86_64.S68 #define FUNCTION_TYPE(name,index) .type $index, @function
71 #define FUNCTION_TYPE(name,index) .type name&, @function
/art/runtime/arch/x86/
Dasm_support_x86.S68 #define FUNCTION_TYPE(name,index) .type $index, @function
71 #define FUNCTION_TYPE(name,index) .type name&, @function
/art/disassembler/
Ddisassembler_mips.cc184 uint32_t function = (instruction & 0x3f); // R-type. in Dump() local
185 opcode = StringPrintf("op=%d fn=%d", op, function); in Dump()
/art/test/115-native-bridge/
Dexpected.txt7 Test ART callbacks: all JNI function number is 9.
/art/tools/
Dcpplint.py1999 function = Search(r'((\w|:)*)\(', line).group(1)
2000 if Match(r'TEST', function): # Handle TEST... macros
2003 function += parameter_regexp.group(1)
2005 function += '()'
2006 function_state.Begin(function)
/art/runtime/
Dthread.cc700 bool Thread::RequestCheckpoint(Closure* function) { in RequestCheckpoint() argument
718 tlsPtr_.checkpoint_functions[available_checkpoint] = function; in RequestCheckpoint()
731 CHECK_EQ(tlsPtr_.checkpoint_functions[available_checkpoint], function); in RequestCheckpoint()
Dthread.h207 bool RequestCheckpoint(Closure* function)