Home
last modified time | relevance | path

Searched refs:_proc (Results 1 – 23 of 23) sorted by relevance

/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Dmultiprocessing_shim.py29 self._proc = ProcessSubclass(self, group, target, name, args, kwargs)
34 self._proc.run()
37 self._proc.start()
43 self._proc.terminate()
46 self._proc.join( timeout)
49 return self._proc.is_alive()
53 return self._proc.name
57 self._proc.name = name
61 return self._proc.daemon
65 self._proc.daemon = daemonic
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Diprofiler_profiler.py25 self._proc = pexpect.spawn(
30 if self._proc.getecho():
31 output = self._proc.readline().strip()
37 self._proc.interact(escape_character='\x0d')
45 self._proc.write('\x0d')
48 return self._proc.getecho()
52 self._proc.kill(signal.SIGINT)
54 self._proc.wait()
58 self._proc = None
Dtcpdump_profiler.py32 self._proc = subprocess.Popen(
50 self._proc.terminate()
74 self._proc = subprocess.Popen(
82 self._proc.send_signal(signal.SIGINT)
83 exit_code = self._proc.wait()
Dsample_profiler.py20 self._proc = subprocess.Popen(
33 self._proc.send_signal(signal.SIGINT)
34 exit_code = self._proc.wait()
41 self._proc = None
Dstrace_profiler.py170 self._proc = subprocess.Popen(
180 self._proc.send_signal(signal.SIGINT)
181 exit_code = self._proc.wait()
Dperf_profiler.py99 self._proc = subprocess.Popen(cmd_prefix + perf_args,
117 self._proc.send_signal(signal.SIGINT)
118 exit_code = self._proc.wait()
Dvtune_profiler.py30 self._proc = subprocess.Popen(
43 exit_code = self._proc.wait()
/external/libunwind/doc/
Dunw_get_proc_info_by_ip.tex8 …egin{Name}{3}{unw\_get\_proc\_info\_by\_ip}{David Mosberger-Tang}{Programming Library}{unw\_get\_p…
15 …Type{int} \Func{unw\_get\_proc\_info\_by\_ip}(\Type{unw\_addr\_space\_t~}\Var{as}, \Type{unw\_word…
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}()
58 \Func{unw\_get\_proc\_info}() is thread-safe. If the local
71 In addition, \Func{unw\_get\_proc\_info}() may return any error
79 \SeeAlso{unw\_get\_proc\_name(3)},
[all …]
Dunw_get_proc_info.tex8 \begin{Name}{3}{unw\_get\_proc\_info}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_in…
15 \Type{int} \Func{unw\_get\_proc\_info}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{unw\_proc\_info\_t~*}…
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}() routine
64 \Func{find\_proc\_info}() call-back (see
66 \Func{unw\_get\_proc\_info}() routine
71 \Func{find\_proc\_info}() call-back (see
[all …]
Dunw_get_proc_name.tex8 \begin{Name}{3}{unw\_get\_proc\_name}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_na…
15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \T…
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 error
72 \SeeAlso{unw\_get\_proc\_info(3)}
Dunw_create_addr_space.tex54 \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…
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{a…
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 must
[all …]
Dlibunwind-ptrace.tex23 \Type{int} \Func{\_UPT\_find\_proc\_info}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{un…
25 \Type{void} \Func{\_UPT\_put\_unwind\_info}(\Type{unw\_addr\_space\_t}, \Type{unw\_proc\_info\_t~*}…
35 \Type{int} \Func{\_UPT\_get\_proc\_name}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{cha…
60 individual callback routines (\Func{\_UPT\_find\_proc\_info}(),
Dunw_step.tex48 \Func{find\_proc\_info}() returned -\Const{UNW\_ESTOPUNWIND}.
51 \Func{find\_proc\_info}(), \Func{get\_dyn\_info\_list\_addr}(),
Dlibunwind.tex50 \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}, \Typ…
329 \SeeAlso{unw\_get\_proc\_info(3)},
330 \SeeAlso{unw\_get\_proc\_name(3)},
Dunw_resume.tex55 will have to do so on its own by obtaining the \Type{unw\_proc\_info\_t}
Dlibunwind-dynamic.tex114 \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/chromium-trace/catapult/telemetry/telemetry/internal/forwarders/
Dcros_forwarder.py31 self._proc = None
34 self._proc = subprocess.Popen(
58 if self._proc:
59 self._proc.kill()
60 self._proc = None
/external/autotest/client/site_tests/platform_TLSDate/
Dplatform_TLSDate.py16 self._proc = None
43 self._proc = subprocess.Popen(args, stdin=subprocess.PIPE,
48 self._proc.stdin.write('n')
49 self._proc.stdin.flush()
53 self._proc.terminate()
58 self._output = self._proc.communicate()[1].split('\n')
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
Ddesktop_browser_backend.py116 self._proc = None
245 "Return code: %d" % self._proc.returncode)
291 assert not self._proc, 'Must call Close() before Start()'
309 self._proc = subprocess.Popen(
312 self._proc = subprocess.Popen(args, env=env)
330 if self._proc:
331 return self._proc.pid
343 return self._proc and self._proc.poll() == None
555 if self.browser.platform.CooperativelyShutdown(self._proc, "chrome"):
572 self._proc.terminate()
[all …]
/external/autotest/client/cros/audio/
Dcras_dbus_utils.py129 self._proc = None
144 self._proc = multiprocessing.Process(
146 self._proc.daemon = True
147 self._proc.start()
/external/llvm/test/MC/MachO/
Ddebug_frame.s6 _proc: label
/external/llvm/test/MC/ARM/
Ddwarf-cfi-initial-state.s4 _proc: label
/external/llvm/test/MC/PowerPC/
Dppc64-initial-cfa.s10 _proc: label