Home
last modified time | relevance | path

Searched refs:function_name (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dcheck_jni.cc1426 static void* ReleaseGuardedPACopy(const char* function_name, JNIEnv* env, in ReleaseGuardedPACopy() argument
1430 if (!GuardedCopy::Check(function_name, embedded_buf, true)) { in ReleaseGuardedPACopy()
1462 static bool Check(const char* function_name, const void* embedded_buf, bool mod_okay) { in Check() argument
1464 return copy->CheckHeader(function_name, mod_okay) && copy->CheckRedZones(function_name); in Check()
1508 bool CheckHeader(const char* function_name, bool mod_okay) const { in CheckHeader() argument
1518 AbortF(function_name, in CheckHeader()
1530 AbortF(function_name, "buffer modified (0x%08lx vs 0x%08lx) at address %p", in CheckHeader()
1538 bool CheckRedZones(const char* function_name) const { in CheckRedZones()
1543 AbortF(function_name, "guard pattern before buffer disturbed at %p +%zd", this, i); in CheckRedZones()
1558 AbortF(function_name, "guard pattern after buffer disturbed at %p +%zd", this, in CheckRedZones()
[all …]
/art/tools/
Dcpplint.py711 def Begin(self, function_name): argument
719 self.current_function = function_name
2010 function_name = match_result.group(1).split()[-1]
2011 if function_name == 'TEST' or function_name == 'TEST_F' or (
2012 not Match(r'[A-Z_]+$', function_name)):
3401 function_name = re.search(r'\b((?:string)?printf)\s*\(',
3405 % (function_name, match.group(1)))