Searched refs:function (Results 1 – 13 of 13) sorted by relevance
/art/runtime/gc/allocator/ |
D | dlmalloc.cc | 27 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/ |
D | asm_support_arm.S | 35 .type \name, #function 47 .type \name, #function 59 .type \name, #function 73 .type \name, #function
|
D | quick_entrypoints_arm.S | 1127 .type art_quick_instrumentation_exit, #function
|
/art/test/117-nopatchoat/ |
D | expected.txt | 3 This is a function call 6 This is a function call 9 This is a function call
|
/art/runtime/arch/arm64/ |
D | asm_support_arm64.S | 46 .type \name, #function 56 .type \name, #function
|
/art/runtime/arch/mips/ |
D | asm_support_mips.S | 32 .type \name, %function
|
/art/runtime/arch/x86_64/ |
D | asm_support_x86_64.S | 68 #define FUNCTION_TYPE(name,index) .type $index, @function 71 #define FUNCTION_TYPE(name,index) .type name&, @function
|
/art/runtime/arch/x86/ |
D | asm_support_x86.S | 68 #define FUNCTION_TYPE(name,index) .type $index, @function 71 #define FUNCTION_TYPE(name,index) .type name&, @function
|
/art/disassembler/ |
D | disassembler_mips.cc | 184 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/ |
D | expected.txt | 7 Test ART callbacks: all JNI function number is 9.
|
/art/tools/ |
D | cpplint.py | 1999 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/ |
D | thread.cc | 700 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()
|
D | thread.h | 207 bool RequestCheckpoint(Closure* function)
|