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

1 2

  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
iprofiler_profiler.py 27 self._proc = pexpect.spawn(
32 if self._proc.getecho():
33 output = self._proc.readline().strip()
39 self._proc.interact(escape_character='\x0d')
47 self._proc.write('\x0d')
50 return self._proc.getecho()
54 self._proc.kill(signal.SIGINT)
56 self._proc.wait()
60 self._proc = None
sample_profiler.py 20 self._proc = subprocess.Popen(
33 self._proc.send_signal(signal.SIGINT)
34 exit_code = self._proc.wait()
41 self._proc = None
tcpdump_profiler.py 32 self._proc = subprocess.Popen(
45 self._proc.terminate()
66 self._proc = subprocess.Popen(
74 self._proc.send_signal(signal.SIGINT)
75 exit_code = self._proc.wait()
vtune_profiler.py 29 self._proc = subprocess.Popen(
40 exit_code = self._proc.wait()
strace_profiler.py 169 self._proc = subprocess.Popen(
179 self._proc.send_signal(signal.SIGINT)
180 exit_code = self._proc.wait()
perf_profiler.py 91 self._proc = subprocess.Popen(cmd_prefix + perf_args,
107 self._proc.send_signal(signal.SIGINT)
108 exit_code = self._proc.wait()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 108 if getattr(self, '_proc', None):
109 if self._proc.stdin:
110 self._proc.stdin.close()
111 self._proc.stdin = None
112 if self._proc.stdout:
113 self._proc.stdout.close()
114 self._proc.stdout = None
115 if self._proc.stderr:
116 self._proc.stderr.close()
117 self._proc.stderr = Non
    [all...]
server_process_unittest.py 85 self._proc = MockProc(self)
86 self.stdin = self._proc.stdin
87 self.stdout = self._proc.stdout
88 self.stderr = self._proc.stderr
89 self._pid = self._proc.pid
140 self.assertIsNone(server_process._proc)
147 self.assertIsNone(server_process._proc)
  /external/llvm/test/MC/MachO/
debug_frame.s 6 _proc: label
  /external/chromium_org/tools/telemetry/telemetry/core/forwarders/
cros_forwarder.py 30 self._proc = None
46 self._proc = subprocess.Popen(
61 if self._proc:
62 self._proc.kill()
63 self._proc = None
  /external/libunwind/doc/
unw_get_proc_info_by_ip.tex 8 \begin{Name}{3}{unw\_get\_proc\_info\_by\_ip}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_info\_by\_ip}unw\_get\_proc\_info\_by\_ip -- get procedure info by IP
15 \Type{int} \Func{unw\_get\_proc\_info\_by\_ip}(\Type{unw\_addr\_space\_t~}\Var{as}, \Type{unw\_word\_t~}\Var{ip}, \Type{unw\_proc\_info\_t~*}\Var{pip}, \Type{void~*}\Var{arg});\\
19 The \Func{unw\_get\_proc\_info\_by\_ip}() routine returns the same
21 \Func{unw\_get\_proc\_info}(), except that the info is looked up by
26 than \Func{unw\_get\_proc\_info}().
34 type \Type{unw\_proc\_info\_t} which is used to return the info.
52 On successful completion, \Func{unw\_get\_proc\_info\_by\_ip}(
    [all...]
unw_get_proc_info.tex 8 \begin{Name}{3}{unw\_get\_proc\_info}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_info}unw\_get\_proc\_info -- get info on current procedure
15 \Type{int} \Func{unw\_get\_proc\_info}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{unw\_proc\_info\_t~*}\Var{pip});\\
19 The \Func{unw\_get\_proc\_info}() routine returns auxiliary
22 to a structure of type \Type{unw\_proc\_info\_t} which is used to
23 return the information. The \Type{unw\_proc\_info\_t} has the
58 for use by the \Func{find\_proc\_info}() call-back (see
60 \Func{unw\_get\_proc\_info}() routin
    [all...]
unw_get_proc_name.tex 8 \begin{Name}{3}{unw\_get\_proc\_name}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_name}unw\_get\_proc\_name -- get name of current procedure
15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \Type{size\_t} \Var{len}, \Type{unw\_word\_t~*}\Var{offp});\\
19 The \Func{unw\_get\_proc\_name}() routine returns the name of the
27 address 0x40003000, then invoking \Func{unw\_get\_proc\_name}() on a
36 dynamic symbol table. In such cases, \Func{unw\_get\_proc\_name}()
45 On successful completion, \Func{unw\_get\_proc\_name}() returns 0.
51 \Func{unw\_get\_proc\_name}() is thread-safe. If cursor \Var{cp} is
65 In addition, \Func{unw\_get\_proc\_name}() may return any erro
    [all...]
unw_create_addr_space.tex 54 \Type{int} \Func{find\_proc\_info}(\Type{unw\_addr\_space\_t} \Var{as},\\
55 \SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{unw\_word\_t} \Var{ip}, \Type{unw\_proc\_info\_t~*}\Var{pip},\\
58 \SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\SP\Type{unw\_proc\_info\_t~*}pip, \Type{void~*}\Var{arg});\\
72 \Type{int} \Func{get\_proc\_name}(\Type{unw\_addr\_space\_t} \Var{as},\\
77 \subsection{find\_proc\_info}
79 \Prog{Libunwind} invokes the \Func{find\_proc\_info}() call-back to
84 variable is \Type{unw\_proc\_info\_t}. See
85 \Func{unw\_get\_proc\_info(3)} for details. Argument
88 \Type{unw\_proc\_info\_t} structure: \Var{format},
95 On successful completion, the \Func{find\_proc\_info}() call-back mus
    [all...]
unw_step.tex 48 \Func{find\_proc\_info}() returned -\Const{UNW\_ESTOPUNWIND}.
51 \Func{find\_proc\_info}(), \Func{get\_dyn\_info\_list\_addr}(),
libunwind-ptrace.tex 23 \Type{int} \Func{\_UPT\_find\_proc\_info}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{unw\_proc\_info\_t~*}, \Type{int}, \Type{void~*});\\
25 \Type{void} \Func{\_UPT\_put\_unwind\_info}(\Type{unw\_addr\_space\_t}, \Type{unw\_proc\_info\_t~*}, \Type{void~*});\\
35 \Type{int} \Func{\_UPT\_get\_proc\_name}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{char~*}, \Type{size\_t}, \Type{unw\_word\_t~*}, \Type{void~*});\\
60 individual callback routines (\Func{\_UPT\_find\_proc\_info}(),
libunwind.tex 50 \Type{int} \Func{unw\_get\_proc\_info}(\Type{unw\_cursor\_t~*}, \Type{unw\_proc\_info\_t~*});\\
57 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}, \Type{char~*}, \Type{size\_t}, \Type{unw\_word\_t~*});\\
329 \SeeAlso{unw\_get\_proc\_info(3)},
330 \SeeAlso{unw\_get\_proc\_name(3)},
unw_resume.tex 55 will have to do so on its own by obtaining the \Type{unw\_proc\_info\_t}
libunwind-dynamic.tex 114 \item[\Type{unw\_dyn\_proc\_info\_t} \Var{pi}] This member is used
129 \Type{unw\_dyn\_proc\_info\_t}. This structure contains the following
207 address-space-specific \Func{find\_proc\_info}() callback (see
  /external/llvm/test/MC/ARM/
dwarf-cfi-initial-state.s 4 _proc: label
  /external/chromium_org/build/android/pylib/symbols/
elf_symbolizer.py 200 self._proc = None # Subprocess.Popen(...) instance.
231 if self._proc.poll():
280 self._proc.kill()
281 self._proc.communicate() # Essentially wait() without risking deadlock.
284 self._proc = None
287 self._proc.stdin.write('%s\n' % hex(addr))
291 self._proc.stdin.write('\n')
292 self._proc.stdin.flush()
325 if self._proc:
339 self._proc = subprocess.Popen(cmd, bufsize=1, stdout=subprocess.PIPE
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
desktop_browser_backend.py 38 self._proc = None
136 "Return code: %d" % self._proc.returncode)
191 assert not self._proc, 'Must call Close() before Start()'
205 self._proc = subprocess.Popen(
208 self._proc = subprocess.Popen(args, env=env)
219 if self._proc:
220 return self._proc.pid
232 return self._proc and self._proc.poll() == None
326 self._proc.terminate(
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 70 self._proc = None
150 if not self._proc:
151 self._proc = MockProcess()
152 return self._proc
  /system/core/adb/
jdwp_service.c 235 jdwp_process_event( int socket, unsigned events, void* _proc )
237 JdwpProcess* proc = _proc;
  /external/llvm/test/MC/PowerPC/
ppc64-initial-cfa.s 10 _proc: label

Completed in 967 milliseconds

1 2