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

1 2 3 4 5 6 7

  /external/libchrome/base/
location.h 25 Location(const char* function_name,
44 const char* function_name() const { return function_name_; } function in class:tracked_objects::Location
93 std::string function_name; member in struct:tracked_objects::LocationSnapshot
102 #define FROM_HERE_WITH_EXPLICIT_FUNCTION(function_name) \
103 ::tracked_objects::Location(function_name, \
location.cc 17 Location::Location(const char* function_name,
21 : function_name_(function_name),
85 function_name(location.function_name()),
  /hardware/qcom/display/msm8996/sdm/include/core/
debug_interface.h 102 @param[in] function_name \link name of the function to be traced \endlink
105 virtual void BeginTrace(const char *class_name, const char *function_name,
151 ScopeTracer(const char *class_name, const char *function_name) {
152 T::Get()->BeginTrace(class_name, function_name, "");
  /hardware/qcom/display/msm8998/sdm/include/core/
debug_interface.h 102 @param[in] function_name \link name of the function to be traced \endlink
105 virtual void BeginTrace(const char *class_name, const char *function_name,
151 ScopeTracer(const char *class_name, const char *function_name) {
152 T::Get()->BeginTrace(class_name, function_name, "");
  /hardware/qcom/display/sdm845/sdm/include/core/
debug_interface.h 103 @param[in] function_name \link name of the function to be traced \endlink
106 virtual void BeginTrace(const char *class_name, const char *function_name,
152 ScopeTracer(const char *class_name, const char *function_name) {
153 T::Get()->BeginTrace(class_name, function_name, "");
  /external/google-breakpad/src/processor/
exploitability_linux.cc 71 if (crashing_thread_frames[i]->function_name ==
76 if (crashing_thread_frames[i]->function_name ==
basic_source_line_resolver_types.h 60 Function(const string &function_name,
63 int set_parameter_size) : Base(function_name,
microdump_processor_unittest.cc 137 state.threads()->at(0)->frames()->at(0)->function_name);
139 state.threads()->at(0)->frames()->at(3)->function_name);
165 state.threads()->at(0)->frames()->at(0)->function_name);
167 state.threads()->at(0)->frames()->at(1)->function_name);
169 state.threads()->at(0)->frames()->at(6)->function_name);
183 state.threads()->at(0)->frames()->at(0)->function_name);
185 state.threads()->at(0)->frames()->at(2)->function_name);
187 state.threads()->at(0)->frames()->at(7)->function_name);
source_line_resolver_base_types.h 85 Function(const string &function_name,
89 : name(function_name), address(function_address), size(code_size),
  /test/vts/drivers/hal/common/include/component_loader/
DllLoader.h 53 loader_function GetLoaderFunction(const char* function_name) const;
55 const char* function_name) const;
  /toolchain/binutils/binutils-2.25/gprof/
corefile.h 28 char * function_name;
27 char * function_name; member in struct:function_map
  /system/extras/simpleperf/
SampleComparator.h 35 #define BUILD_COMPARE_VALUE_FUNCTION(function_name, compare_part) \
37 int function_name(const EntryT* sample1, const EntryT* sample2) { \
41 #define BUILD_COMPARE_VALUE_FUNCTION_REVERSE(function_name, compare_part) \
43 int function_name(const EntryT* sample1, const EntryT* sample2) { \
47 #define BUILD_COMPARE_STRING_FUNCTION(function_name, compare_part) \
49 int function_name(const EntryT* sample1, const EntryT* sample2) { \
  /external/google-breakpad/src/google_breakpad/processor/
stack_frame.h 60 function_name(),
120 string function_name; member in struct:google_breakpad::StackFrame
  /external/v8/src/ic/
ic-stats.cc 84 char* function_name = shared->DebugName()->ToCString().release(); local
86 std::make_pair(function, std::unique_ptr<char[]>(function_name)));
87 return function_name;
91 : function_name(nullptr),
103 function_name = nullptr;
119 if (function_name) {
120 value->SetString("functionName", function_name);
  /external/autotest/client/cros/networking/chrome_testing/network_test_ext/
background.js 21 // Returns false if a call |function_name| is pending, otherwise sets up
23 Networking.prototype._setupFunctionCall = function(function_name) {
24 if (this.callStatus[function_name] == null)
25 this.callStatus[function_name] = {};
26 if (this.callStatus[function_name].status == chromeTesting.STATUS_PENDING)
28 this.callStatus[function_name].status = chromeTesting.STATUS_PENDING;
32 Networking.prototype._setResult = function(function_name, result_value) {
35 this.callStatus[function_name].status = chromeTesting.STATUS_FAILURE;
36 this.callStatus[function_name].result = null;
37 this.callStatus[function_name].error = error.message
    [all...]
  /external/compiler-rt/lib/asan/
asan_suppressions.cc 94 const char *function_name = cur->info.function; local
95 if (!function_name) {
99 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
  /test/vts/drivers/hal/common/component_loader/
DllLoader.cpp 107 loader_function DllLoader::GetLoaderFunction(const char* function_name) const {
108 return (loader_function)LoadSymbol(function_name);
112 const char* function_name) const {
113 return (loader_function_with_arg)LoadSymbol(function_name);
  /system/extras/simpleperf/scripts/
report.py 51 def __init__(self, percentage, function_name):
53 self.call_stack = [function_name]
56 def add_call(self, function_name):
57 self.call_stack.append(function_name)
69 for function_name in self.call_stack:
70 strs.append(' %s' % function_name)
157 function_name = line
158 last_node.add_call(function_name)
171 function_name = m.group(2)
174 function_name = lin
    [all...]
  /system/extras/simpleperf/demo/SimpleperfExampleWithNative/app/src/main/cpp/
native-lib.cpp 19 static void ThrowErrnoException(JNIEnv* env, const char* function_name, int err) {
28 jstring msg = env->NewStringUTF(function_name);
  /external/toolchain-utils/user_activity_benchmarks/
utils.py 93 function_name, file_name = \
97 return ','.join([function_name, file_name])
124 function_name, _ = function_key.split(',')
125 cwp_inclusive_count_statistics_cumulative[function_name] += \
321 function_name = statistic['function']
331 function_name, file_name, dso_name, inclusive_count,
334 key = '%s,%s' % (function_name, file_name)
  /test/vts-testcase/fuzz/iface_fuzzer/
ProtoFuzzerRunner.cpp 83 static void *Dlsym(void *handle, string function_name) {
87 void *function = dlsym(handle, function_name.c_str());
89 cerr << __func__ << ": Can't find: " << function_name << endl;
129 string function_name = GetFunctionNamePrefix(comp_spec); local
131 function_name += "with_arg";
133 auto hal_loader = (loader_func)Dlsym(driver_handle_, function_name.c_str());
137 auto hal_loader = (loader_func)Dlsym(driver_handle_, function_name.c_str());
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 75 function_name = p.stdout.readline().rstrip()
77 if function_name in ['??', '']:
80 frames.append((function_name, file_name))
  /external/libbrillo/brillo/errors/
error_unittest.cc 33 EXPECT_EQ("GenerateNetworkError", err->GetLocation().function_name);
74 EXPECT_EQ(error1->GetLocation().function_name,
75 error2->GetLocation().function_name);
  /external/swiftshader/third_party/LLVM/runtime/libprofile/
GCDAProfiling.c 154 void llvm_gcda_emit_function(uint32_t ident, const char *function_name) {
161 write_int32(3 + 1 + length_of_string(function_name));
165 write_string(function_name);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
find.h 108 stringlib_parse_args_finds(const char * function_name, PyObject *args,
119 strncpy(format + len, function_name, FORMAT_BUFFER_SIZE - len - 1);
156 stringlib_parse_args_finds_unicode(const char * function_name, PyObject *args,
162 if(stringlib_parse_args_finds(function_name, args, &tmp_substring,

Completed in 1984 milliseconds

1 2 3 4 5 6 7