/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
D | multiprocessing_shim.py | 29 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/util/ |
D | ts_proxy_server.py | 44 self._proc = None 68 self._proc = subprocess.Popen( 83 assert self._proc 84 if self._proc.poll() is not None: 86 self._proc.stdout.flush() 88 output_line=self._proc.stdout.readline()) 95 self._proc.stdin.write('%s\n' % command_string) 96 self._proc.stdin.flush() 97 self._proc.stdout.flush() 99 command_output.append(self._proc.stdout.readline().strip()) [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
D | iprofiler_profiler.py | 26 self._proc = pexpect.spawn( 31 if self._proc.getecho(): 32 output = self._proc.readline().strip() 38 self._proc.interact(escape_character='\x0d') 46 self._proc.write('\x0d') 49 return self._proc.getecho() 53 self._proc.kill(signal.SIGINT) 55 self._proc.wait() 59 self._proc = None
|
D | tcpdump_profiler.py | 32 self._proc = subprocess.Popen( 52 self._proc.terminate() 72 self._proc = subprocess.Popen( 80 self._proc.send_signal(signal.SIGINT) 81 exit_code = self._proc.wait()
|
D | sample_profiler.py | 21 self._proc = subprocess.Popen( 34 self._proc.send_signal(signal.SIGINT) 35 exit_code = self._proc.wait() 42 self._proc = None
|
D | strace_profiler.py | 171 self._proc = subprocess.Popen( 181 self._proc.send_signal(signal.SIGINT) 182 exit_code = self._proc.wait()
|
D | perf_profiler.py | 101 self._proc = subprocess.Popen(cmd_prefix + perf_args, 119 self._proc.send_signal(signal.SIGINT) 120 exit_code = self._proc.wait()
|
D | vtune_profiler.py | 32 self._proc = subprocess.Popen( 45 exit_code = self._proc.wait()
|
/external/libunwind/doc/ |
D | unw_get_proc_info_by_ip.tex | 8 …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 …]
|
D | unw_get_proc_info.tex | 8 \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 …]
|
D | unw_get_proc_name.tex | 8 \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)}
|
D | 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… 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 …]
|
D | libunwind-ptrace.tex | 23 \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}(),
|
D | unw_step.tex | 48 \Func{find\_proc\_info}() returned -\Const{UNW\_ESTOPUNWIND}. 51 \Func{find\_proc\_info}(), \Func{get\_dyn\_info\_list\_addr}(),
|
D | 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}, \Typ… 329 \SeeAlso{unw\_get\_proc\_info(3)}, 330 \SeeAlso{unw\_get\_proc\_name(3)},
|
D | unw_resume.tex | 55 will have to do so on its own by obtaining the \Type{unw\_proc\_info\_t}
|
/external/skia/tools/skpbench/ |
D | skpbench.py | 92 self._proc = proc 97 for line in iter(self._proc.stdout.readline, b''): 148 self._proc = None 156 if self._proc: 173 self._proc = subprocess.Popen(commandline, stdout=subprocess.PIPE, 175 self._monitor = SubprocessMonitor(self._queue, self._proc) 194 self._proc.wait() 195 if self._proc.returncode != 0: 197 self._proc.returncode) 198 self._proc = None [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/forwarders/ |
D | cros_forwarder.py | 32 self._proc = None 35 self._proc = subprocess.Popen( 61 if self._proc: 62 self._proc.kill() 63 self._proc = None
|
/external/skia/infra/bots/recipe_modules/core/resources/ |
D | elf_symbolizer.py | 243 self._proc = None # Subprocess.Popen(...) instance. 274 if self._proc.poll(): 323 self._proc.kill() 324 self._proc.communicate() # Essentially wait() without risking deadlock. 327 self._proc = None 330 self._proc.stdin.write('%s\n' % hex(addr)) 334 self._proc.stdin.write('\n') 335 self._proc.stdin.flush() 390 if self._proc: 404 self._proc = subprocess.Popen(cmd, bufsize=1, stdout=subprocess.PIPE, [all …]
|
/external/autotest/client/site_tests/platform_TLSDate/ |
D | platform_TLSDate.py | 16 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/ |
D | desktop_browser_backend.py | 114 self._proc = None 224 "Return code: %d" % self._proc.returncode) 274 assert not self._proc, 'Must call Close() before Start()' 296 self._proc = subprocess.Popen( 299 self._proc = subprocess.Popen(args, env=env) 317 if self._proc: 318 return self._proc.pid 330 return self._proc and self._proc.poll() == None 598 if self.browser.platform.CooperativelyShutdown(self._proc, "chrome"): 618 self._proc.terminate() [all …]
|
/external/autotest/client/cros/audio/ |
D | cras_dbus_utils.py | 129 self._proc = None 144 self._proc = multiprocessing.Process( 146 self._proc.daemon = True 147 self._proc.start()
|
/external/llvm/test/MC/MachO/ |
D | debug_frame.s | 6 _proc: label
|
/external/llvm/test/MC/ARM/ |
D | dwarf-cfi-initial-state.s | 4 _proc: label
|
/external/llvm/test/MC/PowerPC/ |
D | ppc64-initial-cfa.s | 10 _proc: label
|