HomeSort by relevance Sort by last modified time
    Searched refs:process (Results 501 - 525 of 2601) sorted by null

<<21222324252627282930>>

  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
ReplaceIcuTags.java 18 import com.google.currysrc.api.process.Reporter;
19 import com.google.currysrc.api.process.ast.AstNodes;
CaptureDeprecatedElements.java 25 import com.google.currysrc.api.process.Context;
26 import com.google.currysrc.api.process.Processor;
27 import com.google.currysrc.api.process.Rule;
28 import com.google.currysrc.api.process.ast.BodyDeclarationLocators;
29 import com.google.currysrc.api.process.ast.TypeLocator;
129 @Override public void process(Context context, CompilationUnit cu) { method in class:CaptureDeprecatedElements.CaptureDeprecatedProcessor
  /external/ltrace/sysdeps/linux-gnu/ia64/
trace.c 73 syscall_p(struct process *proc, int status, int *sysnum)
145 get_arch_dep(struct process *proc)
  /external/ltrace/sysdeps/linux-gnu/x86/
plt.c 46 sym2addr(struct process *proc, struct library_symbol *sym)
52 arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte,
  /external/ltrace/
value.h 41 VAL_LOC_INFERIOR, /* Value is in the inferior process. */
49 struct process *inferior;
66 void value_init(struct value *value, struct process *inferior,
72 * process. You have to be careful not to use VAL_LOC_INFERIOR
  /external/mockito/src/org/mockito/internal/configuration/injection/
MockInjection.java 92 injectionStrategies.process(field, fieldOwner, mocks);
93 postInjectionStrategies.process(field, fieldOwner, mocks);
  /external/opencv3/samples/python2/
gabor_threads.py 31 def process(img, filters): function
65 res1 = process(img, filters)
  /external/wpa_supplicant_8/hs20/server/www/
spp.php 118 error_log("spp.php - Failed to process SPP request");
119 die("Failed to process SPP request");
  /frameworks/base/core/java/android/util/
Base64InputStream.java 143 success = coder.process(EMPTY, 0, 0, true);
145 success = coder.process(inputBuffer, 0, bytesRead, false);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ColorTemperatureFilter.java 90 public void process(FilterContext context) { method in class:ColorTemperatureFilter
104 // Process
105 mProgram.process(input, output);
FlipFilter.java 84 public void process(FilterContext context) { method in class:FlipFilter
97 // Process
98 mProgram.process(input, output);
SepiaFilter.java 78 public void process(FilterContext context) { method in class:SepiaFilter
92 // Process
93 mProgram.process(input, output);
SimpleImageFilter.java 63 public void process(FilterContext context) { method in class:SimpleImageFilter
74 // Process
75 mProgram.process(input, output);
TintFilter.java 91 public void process(FilterContext context) { method in class:TintFilter
105 // Process
106 mProgram.process(input, output);
ToRGBAFilter.java 80 public void process(FilterContext context) { method in class:ToRGBAFilter
88 // Process
89 mProgram.process(input, output);
ToRGBFilter.java 80 public void process(FilterContext context) { method in class:ToRGBFilter
88 // Process
89 mProgram.process(input, output);
  /frameworks/base/tools/preload/
LoadedClass.java 116 if (operation.process.fromZygote()) {
117 names.add(operation.process.name);
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
h3lis331dl.js 76 process.on('SIGINT', function()
90 process.exit(0);
mma7660.js 81 process.on('SIGINT', function()
97 process.exit(0);
  /system/connectivity/shill/
process_manager.cc 98 // Setup/create child process.
99 std::unique_ptr<brillo::Process> process(new brillo::ProcessImpl());
100 process->AddArg(program.value());
102 process->AddArg(option);
104 process->SetCloseUnusedFileDescriptors(true);
105 process->SetPreExecCallback(
107 if (!process->Start()) {
108 LOG(ERROR) << "Failed to start child process for " << program.value();
112 // Setup watcher for the child process
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
BuildTest.java 110 Process process = new ProcessBuilder("getprop", property).start(); local
114 scanner = new Scanner(process.getInputStream());
130 Process process = new ProcessBuilder("getprop", property).start(); local
133 scanner = new Scanner(process.getInputStream());
153 Process process = new ProcessBuilder("getprop").start(); local
156 scanner = new Scanner(process.getInputStream());
  /external/autotest/server/site_tests/platform_KernelErrorPaths/
platform_KernelErrorPaths.py 137 Fetch PID of process named comm.
139 This function tries to lookup the PID for process named @comm. If
140 @parent is not None, the parent process is first looked up and then the
141 PID of child process matching @comm is returned. Since this method is
145 @param comm: Name of the process whose PID needs to be fetched.
146 @param parent: Name of @comm's parent process. This parameter can be
149 @returns PID of matching process.
185 1. Abort the chrome process whose parent is the session_manager process.
186 2. Abort the X process. On Freon enabled systems, X is no longer presen
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
strace_profiler.py 141 for process in timeline_model.processes:
145 'pid': process,
147 'name': timeline_model.processes[process].name
150 for thread in timeline_model.processes[process].threads:
154 'pid': process,
157 'name': timeline_model.processes[process].threads[thread].name
164 """An internal class for using perf for a given process."""
179 '"--extra-browser-args=--single-process"')
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
RecordPublicApiRules.java 23 import com.google.currysrc.api.process.Context;
24 import com.google.currysrc.api.process.Processor;
25 import com.google.currysrc.api.process.Rule;
26 import com.google.currysrc.api.process.ast.BodyDeclarationLocators;
27 import com.google.currysrc.api.process.ast.TypeLocator;
85 @Override public void process(Context context, CompilationUnit cu) { method in class:RecordPublicApiRules.RecordPublicApi
  /external/libchrome/sandbox/linux/services/
namespace_sandbox_unittest.cc 20 #include "base/process/launch.h"
21 #include "base/process/process.h"
62 base::Process process = NamespaceSandbox::LaunchProcessWithOptions( local
64 ASSERT_TRUE(process.IsValid());
68 EXPECT_TRUE(process.WaitForExit(&exit_code));
133 base::Process process = NamespaceSandbox::LaunchProcess( local
135 CHECK(process.IsValid())
    [all...]

Completed in 1164 milliseconds

<<21222324252627282930>>