Searched refs:proc (Results 101 - 125 of 673) sorted by relevance

1234567891011>>

/external/chromium_org/tools/valgrind/
H A Dvalgrind_test.py174 Full execution command-line provided by subclassers via proc."""
176 proc = self.ToolCommand()
179 return common.RunSubprocess(proc, self._timeout)
358 proc = ["valgrind-%s.sh" % tool_name]
364 proc = [path, "--tool=%s" % tool_name]
366 proc += ["--num-callers=%i" % int(self._options.num_callers)]
369 proc += ["--trace-children=yes"]
370 proc += ["--trace-children-skip='*dbus-daemon*'"]
371 proc += ["--trace-children-skip='*dbus-launch*'"]
372 proc
[all...]
/external/skia/src/core/
H A DSkBlitRow_D32.cpp128 SkBlitRow::Proc32 proc = PlatformProcs32(flags);
129 if (NULL == proc) {
130 proc = gDefault_Procs32[flags];
132 SkASSERT(proc);
133 return proc;
137 SkBlitRow::ColorProc proc = PlatformColorProc();
138 if (NULL == proc) {
139 proc = Color32;
141 SkASSERT(proc);
142 return proc;
207 SkBlitRow::ColorProc proc = SkBlitRow::ColorProcFactory(); local
243 SkBlitRow::ColorRectProc proc = PlatformColorRectProcFactory(); local
[all...]
/external/ltrace/sysdeps/linux-gnu/aarch64/
H A Dfetch.c28 #include "proc.h"
32 int aarch64_read_gregs(struct process *proc, struct user_pt_regs *regs);
33 int aarch64_read_fregs(struct process *proc, struct user_fpsimd_state *regs);
47 context_init(struct fetch_context *context, struct process *proc) argument
49 if (aarch64_read_gregs(proc, &context->gregs) < 0
50 || aarch64_read_fregs(proc, &context->fpregs) < 0)
63 arch_fetch_arg_clone(struct process *proc, struct fetch_context *context) argument
174 struct process *proc, struct arg_type_info *info)
178 size_t sz = type_sizeof(proc, info);
258 struct process *proc, struc
173 pass_arg(struct fetch_context const *context, struct process *proc, struct arg_type_info *info) argument
257 fetch_arg(struct fetch_context *context, struct process *proc, struct arg_type_info *info, struct value *value, struct fetch_script how) argument
289 arch_fetch_arg_init(enum tof type, struct process *proc, struct arg_type_info *ret_info) argument
324 arch_fetch_arg_next(struct fetch_context *context, enum tof type, struct process *proc, struct arg_type_info *info, struct value *value) argument
333 arch_fetch_retval(struct fetch_context *context, enum tof type, struct process *proc, struct arg_type_info *info, struct value *value) argument
357 arch_type_sizeof(struct process *proc, struct arg_type_info *arg) argument
363 arch_type_alignof(struct process *proc, struct arg_type_info *arg) argument
[all...]
H A Dplt.c24 #include "proc.h"
29 sym2addr(struct process *proc, struct library_symbol *sym) argument
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dplt.c31 #include "proc.h"
197 arch_dynlink_done(struct process *proc) argument
201 while ((libsym = proc_each_symbol(proc, libsym,
203 if (proc_read_64(proc, libsym->enter_addr,
212 if (proc->e_machine == EM_PPC)
215 if (proc_activate_delayed_symbol(proc, libsym) < 0)
218 if (proc->e_machine == EM_PPC)
284 arch_translate_address_dyn(struct process *proc, argument
287 if (proc->e_machine == EM_PPC64) {
289 if (proc_read_64(proc, add
351 sym2addr(struct process *proc, struct library_symbol *sym) argument
593 read_plt_slot_value(struct process *proc, GElf_Addr addr, GElf_Addr *valp) argument
612 unresolve_plt_slot(struct process *proc, GElf_Addr addr, GElf_Addr value) argument
627 arch_elf_add_func_entry(struct process *proc, struct ltelf *lte, const GElf_Sym *sym, arch_addr_t addr, const char *name, struct library_symbol **ret) argument
691 arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte, const char *a_name, GElf_Rela *rela, size_t ndx, struct library_symbol **ret) argument
825 dl_plt_update_bp_on_hit(struct breakpoint *bp, struct process *proc) argument
865 struct process *proc = self->task_enabling_breakpoint; local
940 jump_to_entry_point(struct process *proc, struct breakpoint *bp) argument
950 ppc_plt_bp_continue(struct breakpoint *bp, struct process *proc) argument
1043 ppc_plt_bp_retract(struct breakpoint *bp, struct process *proc) argument
1058 ppc_plt_bp_install(struct breakpoint *bp, struct process *proc) argument
1152 arch_breakpoint_init(struct process *proc, struct breakpoint *bp) argument
1200 arch_process_init(struct process *proc) argument
1208 arch_process_destroy(struct process *proc) argument
1213 arch_process_clone(struct process *retp, struct process *proc) argument
1232 arch_process_exec(struct process *proc) argument
[all...]
/external/ltrace/sysdeps/linux-gnu/metag/
H A Dtrace.c31 #include "proc.h"
54 \param proc The process that had an event.
59 get_arch_dep(struct process *proc) argument
65 \param proc Process that had event.
74 syscall_p(struct process *proc, int status, int *sysnum) argument
77 && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) {
84 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS,
89 unsigned int insn = ptrace(PTRACE_PEEKTEXT, proc->pid, regs.pc,
95 insn = ptrace(PTRACE_PEEKTEXT, proc->pid, regs.pc - 4,
159 metag_next_pcs(struct process *proc, uint32_ argument
368 arch_sw_singlestep(struct process *proc, struct breakpoint *bp, int (*add_cb)(arch_addr_t, struct sw_singlestep_data *), struct sw_singlestep_data *add_cb_data) argument
394 gimme_arg(enum tof type, struct process *proc, int arg_num, struct arg_type_info *info) argument
[all...]
H A Dplt.c24 #include "proc.h"
35 *sym2addr(struct process *proc, struct library_symbol *sym) argument
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixNetworkInterfaceTest.java46 Process proc = Runtime.getRuntime().exec(cmd);
47 proc.waitFor();
51 proc = Runtime.getRuntime().exec(cmd);
52 proc.waitFor();
70 Process proc = Runtime.getRuntime().exec(cmd);
71 proc.waitFor();
77 proc = Runtime.getRuntime().exec(cmd);
78 proc.waitFor();
100 Process proc = Runtime.getRuntime().exec(cmd);
101 proc
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java66 Process proc = (Process) arr[0];
68 InputStream in = proc.getInputStream();
80 proc.waitFor();
81 int exitCode = proc.exitValue();
82 proc.destroy();
117 Process proc = (Process) arr[0];
119 InputStream in = proc.getInputStream();
131 proc.waitFor();
135 proc.destroy();
230 final Process proc
[all...]
/external/chromium_org/net/dns/
H A Dhost_resolver_proc.h59 void SetPreviousProc(HostResolverProc* proc);
61 // Sets the last procedure in the chain, i.e. appends |proc| to the end of the
63 void SetLastProc(HostResolverProc* proc);
65 // Returns the last procedure in the chain starting at |proc|. Will return
66 // NULL iff |proc| is NULL.
67 static HostResolverProc* GetLastProc(HostResolverProc* proc);
73 static HostResolverProc* SetDefault(HostResolverProc* proc);
H A Dhost_resolver_proc.cc88 void HostResolverProc::SetPreviousProc(HostResolverProc* proc) { argument
91 // Now that we've guaranteed |this| is the last proc in a chain, we can
93 previous_proc_ = (GetLastProc(proc) == this) ? current_previous : proc;
96 void HostResolverProc::SetLastProc(HostResolverProc* proc) { argument
97 GetLastProc(this)->SetPreviousProc(proc);
101 HostResolverProc* HostResolverProc::GetLastProc(HostResolverProc* proc) { argument
102 if (proc == NULL)
104 HostResolverProc* last_proc = proc;
111 HostResolverProc* HostResolverProc::SetDefault(HostResolverProc* proc) { argument
[all...]
/external/chromium_org/third_party/skia/bench/
H A DRegionContainBench.cpp36 RegionContainBench(Proc proc, const char name[]) { argument
37 fProc = proc;
56 Proc proc = fProc; local
59 proc(fA, fB);
/external/chromium_org/tools/gn/
H A Dlast_commit_position.py43 proc = subprocess.Popen(command,
48 return proc
62 proc = RunGitCommand(directory, ['log'])
64 line = proc.stdout.readline()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
H A DbugzillaLogin.sh33 if [[ -e /proc/self/fd/2 ]];
35 echo "$VALUES" >/proc/self/fd/2
/external/libunwind/src/hppa/
H A Dsiglongjmp.S8 .proc
/external/libunwind/src/ia64/
H A Dlongjmp.S29 .proc longjmp_continuation
/external/ltrace/
H A Ddebug.h41 int xinfdump(struct process *proc, arch_addr_t addr, size_t length);
/external/ltrace/sysdeps/linux-gnu/cris/
H A Dplt.c22 #include "proc.h"
31 void *sym2addr(struct process *proc, struct library_symbol *sym) argument
/external/ltrace/sysdeps/linux-gnu/m68k/
H A Dplt.c22 #include "proc.h"
33 sym2addr(struct process *proc, struct library_symbol *sym) argument
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_gl.h35 void* ph_GL_GetProcAddress(_THIS, const char* proc);
/external/skia/bench/
H A DRegionContainBench.cpp36 RegionContainBench(Proc proc, const char name[]) { argument
37 fProc = proc;
56 Proc proc = fProc; local
59 proc(fA, fB);
/external/strace/tests/
H A Ddetach-running.test44 if [ -f /proc/self/status ]; then
46 test -d /proc/$tracee_pid ||
48 grep '^State:.*R (running)' < /proc/$tracee_pid/status > /dev/null || {
50 grep '^State:' < /proc/$tracee_pid/status
H A Ddetach-sleeping.test45 if [ -f /proc/self/status ]; then
47 test -d /proc/$tracee_pid ||
49 grep '^State:.*S (sleeping)' < /proc/$tracee_pid/status > /dev/null || {
51 grep '^State:' < /proc/$tracee_pid/status
H A Ddetach-stopped.test53 if [ -f /proc/self/status ]; then
55 test -d /proc/$tracee_pid ||
57 grep '^State:.*T (stopped)' < /proc/$tracee_pid/status > /dev/null || {
59 grep '^State:' < /proc/$tracee_pid/status
/external/chromium_org/tools/site_compare/scrapers/ie/
H A Die7.py144 proc = None
153 if not proc:
154 (wnd, proc, address_bar, render_pane, tab_window) = InvokeBrowser(path)
175 if not windowing.WaitForProcessExit(proc, timeout):
176 windowing.EndProcess(proc)
178 proc = None
181 proc = None
187 if proc:
189 if not windowing.WaitForProcessExit(proc, timeout):
190 windowing.EndProcess(proc)
[all...]

Completed in 2983 milliseconds

1234567891011>>