Home
last modified time | relevance | path

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

/aosp12/system/extras/simpleperf/scripts/
H A Dpprof_proto_generator.py56 self.string_table = profile.string_table
81 print('%d strings' % len(p.string_table))
82 for i in range(len(p.string_table)):
162 return self.string_table[string_id]
264 self.profile.string_table.append('')
265 self.string_table = {}
362 str_id = self.string_table.get(str_value)
365 str_id = len(self.string_table) + 1
366 self.string_table[str_value] = str_id
367 self.profile.string_table.append(str_value)
[all …]
/aosp12/art/tools/jvmti-agents/ti-alloc-sample/
H A Dti_alloc_sample.cc273 static UniqueStringTable* string_table = nullptr; variable
291 return string_table->Intern("+", allocation.str()); in formatAllocation()
304 return string_table->Intern("+", method); in formatMethod()
348 stream->Write(string_table->Intern("=", record) + "\n"); in logVMObjectAlloc()
445 string_table = new UniqueStringTable(); in AgentStart()