HomeSort by relevance Sort by last modified time
    Searched defs:tracer (Results 1 - 25 of 49) sorted by null

1 2

  /build/make/tools/
adbs 31 # create tracer for line parsing
32 tracer = stack_core.TraceConverter() variable
40 if(tracer.ProcessLine(line) == False):
  /build/soong/ui/tracer/
ninja.go 15 package tracer package
tracer.go 20 package tracer package
43 type Tracer interface {
63 var _ Tracer = &tracerImpl{}
85 // New creates a new Tracer, storing log in order to log errors later.
  /system/core/libprocinfo/include/procinfo/
process.h 43 pid_t tracer; member in struct:android::procinfo::ProcessInfo
  /external/libchrome/base/posix/
file_descriptor_shuffle_unittest.cc 69 InjectionTracer tracer; local
71 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
72 EXPECT_EQ(0u, tracer.actions().size());
77 InjectionTracer tracer; local
80 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
81 EXPECT_EQ(0u, tracer.actions().size());
86 InjectionTracer tracer; local
89 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
90 EXPECT_EQ(0u, tracer.actions().size());
95 InjectionTracer tracer; local
105 InjectionTracer tracer; local
117 InjectionTracer tracer; local
128 InjectionTracer tracer; local
140 InjectionTracer tracer; local
155 InjectionTracer tracer; local
170 InjectionTracer tracer; local
185 InjectionTracer tracer; local
200 InjectionTracer tracer; local
212 InjectionTracer tracer; local
225 InjectionTracer tracer; local
238 InjectionTracer tracer; local
    [all...]
  /external/autotest/client/site_tests/security_ptraceRestrictions/src/
thread-prctl.c 49 pid_t tracer, tracee; variable
55 ret = prctl (PR_SET_PTRACER, tracer, 0, 0, 0);
70 tracer = getpid();
71 printf("tracer %d waiting\n", tracer);
74 printf("forking tracee from tracer\n");
84 perror("tracer pipe read");
88 printf("tracer to PTRACE_ATTACH my tracee %d\n", tracee);
92 perror ("tracer ptrace attach has failed");
95 printf ("tracer ptrace attach successful\n")
    [all...]
  /bionic/tests/
sys_ptrace_test.cpp 201 raise(SIGSTOP); // Synchronize with the tracer, let it set the watchpoint.
235 raise(SIGSTOP); // Synchronize with the tracer, let it set the watchpoint.
284 raise(SIGSTOP); // Synchronize with the tracer, let it set the breakpoint.
394 pid_t tracer = fork(); local
395 ASSERT_NE(-1, tracer);
396 if (tracer == 0) {
405 pid_t rc = waitpid(tracer, &result, 0);
406 ASSERT_EQ(tracer, rc);
410 FAIL() << "tracer failed";
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_scope.py 546 def tracer(a,b,c): function in function:.testInteractionWithTraceFunc
547 return tracer
559 sys.settrace(tracer)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_scope.py 546 def tracer(a,b,c): function in function:.testInteractionWithTraceFunc
547 return tracer
559 sys.settrace(tracer)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_scope.py 546 def tracer(a,b,c): function in function:.testInteractionWithTraceFunc
547 return tracer
559 sys.settrace(tracer)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_scope.py 546 def tracer(a,b,c): function in function:.testInteractionWithTraceFunc
547 return tracer
559 sys.settrace(tracer)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_scope.py 546 def tracer(a,b,c): function in function:.testInteractionWithTraceFunc
547 return tracer
559 sys.settrace(tracer)
  /external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
seccomp_bpf_tests.c 69 #define SECCOMP_RET_TRACE 0x7ff00000U // pass to a tracer or disallow
760 void tracer(struct __test_metadata *_metadata, pid_t tracee, function
827 pid_t tracer; local
857 /* Fork a child which we'll promote to tracer */
863 tracer(_metadata, tracee, poke_addr, pipefd[1]);
867 self->tracer = tracer_pid;
868 prctl(PR_SET_PTRACER, self->tracer, 0, 0, 0);
874 if (self->tracer) {
880 ASSERT_EQ(0, kill(self->tracer, SIGUSR1));
881 ASSERT_EQ(self->tracer, waitpid(self->tracer, &status, 0))
    [all...]
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_bpf.c 75 #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */
1083 /* Common tracer setup/teardown functions. */
1097 /* Fork a child which we'll promote to tracer */
1115 pid_t tracer)
1117 if (tracer) {
1123 ASSERT_EQ(0, kill(tracer, SIGUSR1));
1124 ASSERT_EQ(tracer, waitpid(tracer, &status, 0));
1130 /* "poke" tracer arguments and function. */
1159 pid_t tracer; local
1433 pid_t tracer, mytid, mypid, parent; local
    [all...]
  /external/seccomp-tests/linux/
seccomp_bpf.c 75 #define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */
1024 void tracer(struct __test_metadata *_metadata, int fd, pid_t tracee, function
1078 /* Common tracer setup/teardown functions. */
1092 /* Fork a child which we'll promote to tracer */
1098 tracer(_metadata, pipefd[1], tracee, func, args);
1109 pid_t tracer)
1111 if (tracer) {
1117 ASSERT_EQ(0, kill(tracer, SIGUSR1));
1118 ASSERT_EQ(tracer, waitpid(tracer, &status, 0))
1153 pid_t tracer; local
1379 pid_t tracer, mytid, mypid, parent; local
    [all...]
  /prebuilts/sdk/tools/
jack-jar-tools.jar 
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 1556 TraceLog* tracer = TraceLog::GetInstance(); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
turtle.py 61 and enhanced tracer() and speed() methods.
124 'setworldcoordinates', 'title', 'tracer', 'turtles', 'update',
136 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards', 'tracer',
1192 def tracer(self, n=None, delay=None): member in class:TurtleScreen
1920 def tracer(self, a=None, b=None): member in class:TNavigator
2575 def tracer(self, flag=None, delay=None): function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
turtle.py 61 and enhanced tracer() and speed() methods.
124 'setworldcoordinates', 'title', 'tracer', 'turtles', 'update',
136 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards', 'tracer',
1192 def tracer(self, n=None, delay=None): member in class:TurtleScreen
1920 def tracer(self, a=None, b=None): member in class:TNavigator
2575 def tracer(self, flag=None, delay=None): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 61 and enhanced tracer() and speed() methods.
124 'setworldcoordinates', 'title', 'tracer', 'turtles', 'update',
136 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards', 'tracer',
1192 def tracer(self, n=None, delay=None): member in class:TurtleScreen
1920 def tracer(self, a=None, b=None): member in class:TNavigator
2575 def tracer(self, flag=None, delay=None): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 61 and enhanced tracer() and speed() methods.
124 'setworldcoordinates', 'title', 'tracer', 'turtles', 'update',
136 'speed', 'st', 'stamp', 'tilt', 'tiltangle', 'towards', 'tracer',
1192 def tracer(self, n=None, delay=None): member in class:TurtleScreen
1920 def tracer(self, a=None, b=None): member in class:TNavigator
2575 def tracer(self, flag=None, delay=None): function
    [all...]
  /development/ndk/platforms/android-9/arch-x86/include/asm/
voyager.h 119 __u8 tracer[4]; member in struct:voyager_eeprom_hdr
  /external/blktrace/
blktrace.c 102 * Each tracer will have a tracer_devpath_head that it will add new
119 * For piped output to stdout we will have each tracer thread (one per dev)
126 * dp_entries. (When dp_entries is 0, and a tracer adds an entry it will
130 * adb: It may be better just to have a large buffer per tracer per dev,
163 struct tracer { struct
299 * tracer threads add entries, the main thread takes them off and processes
326 static int (*handle_pfds)(struct tracer *, int, int);
538 static void tracer_wait_unblock(struct tracer *tp)
546 static void tracer_signal_ready(struct tracer *tp,
1456 static inline int net_sendfile_data(struct tracer *tp, struct io_info *iop
    [all...]
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/asm/
voyager.h 119 __u8 tracer[4]; member in struct:voyager_eeprom_hdr
  /prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/asm/
voyager.h 119 __u8 tracer[4]; member in struct:voyager_eeprom_hdr

Completed in 2926 milliseconds

1 2