Home
last modified time | relevance | path

Searched refs:cur_thread (Results 1 – 3 of 3) sorted by relevance

/aosp12/bionic/libc/malloc_debug/tools/
H A Dgen_malloc.pl183 my ($opts, $cur_thread, $pointer, $name, $size, $arg2) = @_;
185 if ($opts->{thread} eq $cur_thread) {
207 my $cur_thread = $1;
213 PrintAlloc($opts, $cur_thread, $pointer, "MALLOC", $size, 0);
218 PrintAlloc($opts, $cur_thread, $pointer, "CALLOC", $size, $nmemb);
223 PrintAlloc($opts, $cur_thread, $pointer, "MEMALIGN", $size, $align);
228 warn "WARNING: $.: Unknown allocation $pointer ignored on $cur_thread\n";
231 die "$.: Unknown allocation $pointer on $cur_thread\n";
242 if ($thread ne $cur_thread) {
255 warn "WARNING: $.: Unknown realloc allocation $old_pointer ignored on $cur_thread\n";
[all …]
/aosp12/system/extras/simpleperf/scripts/
H A Dreport_html.py150 cur_thread = new_threads.get(thread.name)
151 if cur_thread is None:
154 cur_thread.merge(thread)
/aosp12/art/openjdkjvmti/
H A Dti_stack.cc1386 ScopedLocalRef<jthread> cur_thread(self->GetJniEnv(), nullptr); in ForceEarlyReturn() local
1389 cur_thread.reset(soa.AddLocalReference<jthread>(self->GetPeer())); in ForceEarlyReturn()
1390 thread = cur_thread.get(); in ForceEarlyReturn()