Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dpprof_proto_generator.py159 print('%sfunction_id: %d' % (space, line.function_id))
160 self.show_function_id(line.function_id, sub_space)
163 def show_function_id(self, function_id, space=''): argument
164 function = self.profile.function[function_id - 1]
225 self.function_id = 0
418 function_id = self.get_function_id(symbol.symbol_name, binary_path, symbol.symbol_addr)
419 if function_id:
423 line.function_id = function_id
483 def get_function(self, function_id): argument
484 return self.function_list[function_id - 1] if function_id > 0 else None
[all …]
/system/extras/simpleperf/scripts/test/
Dpprof_proto_generator_test.py205 function = profile.function[line.function_id - 1]
234 function = generator.get_function(location.lines[0].function_id)
237 location.lines[0].function_id = generator.get_function_id(
248 function = generator.get_function(location.lines[0].function_id)