HomeSort by relevance Sort by last modified time
    Searched defs:proc (Results 101 - 125 of 245) sorted by null

1 2 3 45 6 7 8 910

  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java 71 Process proc = new NdkCommandLauncher().execute(commandPath, args, env, local
73 if (proc == null)
74 // proc failed to start
76 BufferedReader reader = new BufferedReader(new InputStreamReader(proc.getInputStream()));
102 proc = new NdkCommandLauncher().execute(new Path(mCommand), args, env,
105 final InputStream errStream = proc.getErrorStream();
114 checkDefines(proc.getInputStream());
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsUi.java 475 final ProcessStats.ProcessState proc = mStats.mProcesses.get(pkgProc.mName, local
477 if (proc == null) {
479 + "/" + st.mUid + " proc name " + pkgProc.mName);
482 ProcStatsEntry ent = entriesMap.get(proc.mName, proc.mUid);
484 ent = new ProcStatsEntry(proc, st.mPackageName, totals, mUseUss,
487 if (DEBUG) Log.d(TAG, "Adding proc " + proc.mName + "/"
488 + proc.mUid + ": time=" + makeDuration(ent.mDuration) + " ("
491 entriesMap.put(proc.mName, proc.mUid, ent)
557 ProcStatsEntry proc = entries.get(i); local
567 ProcStatsEntry proc = entries.get(i); local
    [all...]
  /external/chromium/net/base/
mock_host_resolver.cc 71 HostResolverProc* proc = rules_; local
75 interceptor->SetPreviousProc(proc);
76 proc = interceptor;
88 impl_.reset(new HostResolverImpl(proc, cache, 50u, NULL));
300 HostResolverProc* proc) {
301 Init(proc);
310 void ScopedDefaultHostResolverProc::Init(HostResolverProc* proc) {
311 current_proc_ = proc;
  /external/chromium_org/base/
linux_util.cc 74 // expected prefix of the target of the /proc/self/fd/%d link for a socket
77 // Parse a symlink in /proc/pid/fd/$x and return the inode number of the
80 // path: e.g. /proc/1234/fd/5 (must be a UNIX domain socket descriptor)
90 DLOG(WARNING) << "Failed to read the inode number for a socket from /proc"
201 DIR* proc = opendir("/proc"); local
202 if (!proc) {
203 DLOG(WARNING) << "Cannot open /proc";
210 while ((dent = readdir(proc))) {
217 closedir(proc);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldriver.c 664 _EGLProc proc = NULL; local
679 proc = mod->Driver->API.GetProcAddress(mod->Driver, procname);
680 if (proc)
684 return proc;
  /external/chromium_org/third_party/skia/src/core/
SkBlitMask_D32.cpp 68 BlitLCD16RowProc proc = PlatformBlitRowProcs16(isOpaque); local
69 if (proc) {
70 return proc;
88 SkBlitMask::BlitLCD16RowProc proc = NULL; local
90 proc = SkBlitMask::BlitLCD16RowFactory(isOpaque);
91 SkASSERT(proc != NULL);
100 proc(dstRow, srcRow, color, width, opaqueDst);
236 ColorProc proc = PlatformColorProcs(config, format, color); local
237 if (proc) {
238 return proc;
262 ColorProc proc = ColorFactory(device.config(), mask.fFormat, color); local
558 RowProc proc = PlatformRowProcs(config, format, flags); local
    [all...]
SkBlitter_ARGB32.cpp 24 SkBlitRow::Proc32 proc = SkBlitRow::Factory32(flags); local
35 proc(dstRow, srcRow, width, alpha);
362 SkBlitRow::Proc32 proc = fProc32; local
364 proc(device, span, width, 255);
399 SkBlitRow::Proc32 proc = fProc32; local
402 proc(device, span, width, 255);
494 SkBlitMask::RowProc proc = NULL; local
500 proc = SkBlitMask::RowFactory(SkBitmap::kARGB_8888_Config, mask.fFormat,
502 if (NULL == proc) {
534 proc(dstRow, maskRow, span, width)
573 SkBlitRow::Proc32 proc = (255 == alpha) ? fProc32 : fProc32Blend; local
629 SkBlitRow::Proc32 proc = (255 == alpha) ? fProc32 : fProc32Blend; local
    [all...]
SkSpriteBlitter_RGB16.cpp 290 SkBlitRow::Proc proc = fProc; local
294 proc(dst, src, width, alpha, x, y);
302 SkBlitRow::Proc fProc;
  /external/chromium_org/third_party/skia/src/effects/
SkColorFilters.cpp 60 SkXfermodeProc proc = fProc; variable
63 result[i] = proc(color, shader[i]);
  /external/chromium_org/third_party/skia/src/views/
SkEventSink.cpp 225 SkEvent::Proc proc = evt.getTargetProc(); local
226 if (proc) {
227 return proc(evt) ? kHandled_EventResult : kNotHandled_EventResult;
  /external/e2fsprogs/lib/blkid/
devname.c 265 #define PROC_PARTITIONS "/proc/partitions"
266 #define VG_DIR "/proc/lvm/VGs"
270 * proc hierarchy. We currently depend on the names of the LVM
362 #define PROC_EVMS_VOLUMES "/proc/evms/volumes"
396 FILE *proc; local
423 proc = fopen(PROC_PARTITIONS, "r");
424 if (!proc)
427 while (fgets(line, sizeof(line), proc)) {
507 fclose(proc);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
UnpackUpdateJars.java 92 Process proc = null; local
94 proc = rt.exec(command);
100 StreamHandler errorHandler = new StreamHandler(proc.getErrorStream(), "ERROR");
103 StreamHandler outputHandler = new StreamHandler(proc.getInputStream(), "OUTPUT");
112 returnCode = proc.waitFor();
  /external/grub/stage2/
smp-imps.c 133 imps_processor proc[2]; member in struct:__anon20283
309 boot_cpu (imps_processor * proc)
328 if (proc->apic_ver & 0x10)
366 add_processor (imps_processor * proc)
368 int apicid = proc->apic_id;
371 apicid, proc->apic_ver));
372 if (!(proc->flags & IMPS_FLAG_ENABLED))
377 if (proc->apic_ver > 0xF)
381 if (proc->flags & (IMPS_CPUFLAG_BOOT))
388 if (boot_cpu (proc))
    [all...]
  /external/linux-tools-perf/util/
event.c 67 snprintf(filename, sizeof(filename), "/proc/%d/status", pid);
120 snprintf(filename, sizeof(filename), "/proc/%d/task", pid);
152 snprintf(filename, sizeof(filename), "/proc/%d/maps", pid);
329 DIR *proc; local
342 proc = opendir("/proc");
343 if (proc == NULL)
346 while (!readdir_r(proc, &dirent, &next) && next) {
357 closedir(proc);
421 filename = "/proc/kallsyms"
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 664 _EGLProc proc = NULL; local
679 proc = mod->Driver->API.GetProcAddress(mod->Driver, procname);
680 if (proc)
684 return proc;
  /external/qemu/memcheck/
memcheck.c 57 * proc - Process that caused access violation.
63 av_invalid_pointer(ProcDesc* proc, target_ulong ptr, int routine)
71 proc->image_path, proc->pid, ptr, routine == 1 ? "free" : "realloc",
78 * proc - Process that caused access violation.
90 av_access_violation(ProcDesc* proc,
111 proc->image_path, proc->pid);
114 const MMRangeDesc* rdesc = procdesc_get_range_desc(proc, vaddr);
197 ProcDesc* proc = get_current_process() local
380 ProcDesc* proc = get_process_from_pid(pid); local
402 ProcDesc* proc; local
483 ProcDesc* proc; local
529 ProcDesc* proc; local
579 ProcDesc* proc; local
616 ProcDesc* proc; local
    [all...]
memcheck_proc_management.c 62 * proc - Process descriptor of the process, in context of which new thread
69 create_new_thread(ProcDesc* proc, uint32_t tid)
77 new_thread->process = proc;
82 QLIST_INSERT_HEAD(&proc->threads, new_thread, proc_entry);
240 * proc - Descriptor of the process where to set, or replace image path.
249 procdesc_set_image_path(ProcDesc* proc,
253 if (image_path == NULL || proc == NULL) {
257 if (proc->image_path != NULL) {
263 if (!strcmp(proc->image_path, image_path)) {
267 qemu_free(proc->image_path)
318 ProcDesc* proc; local
578 ProcDesc* proc; local
704 ProcDesc* proc = get_current_process(); local
749 ProcDesc* proc = get_current_process(); local
    [all...]
  /external/skia/bench/
RegionBench.cpp 72 typedef bool (*Proc)(SkRegion& a, SkRegion& b);
75 Proc fProc;
93 RegionBench(void* param, int count, Proc proc, const char name[], int mul = 1) : INHERITED(param) {
94 fProc = proc;
110 Proc proc = fProc; local
113 proc(fA, fB);
  /external/skia/src/core/
SkBlitMask_D32.cpp 68 BlitLCD16RowProc proc = PlatformBlitRowProcs16(isOpaque); local
69 if (proc) {
70 return proc;
88 SkBlitMask::BlitLCD16RowProc proc = NULL; local
90 proc = SkBlitMask::BlitLCD16RowFactory(isOpaque);
91 SkASSERT(proc != NULL);
100 proc(dstRow, srcRow, color, width, opaqueDst);
236 ColorProc proc = PlatformColorProcs(config, format, color); local
237 if (proc) {
238 return proc;
262 ColorProc proc = ColorFactory(device.config(), mask.fFormat, color); local
558 RowProc proc = PlatformRowProcs(config, format, flags); local
    [all...]
SkBlitter_ARGB32.cpp 24 SkBlitRow::Proc32 proc = SkBlitRow::Factory32(flags); local
35 proc(dstRow, srcRow, width, alpha);
362 SkBlitRow::Proc32 proc = fProc32; local
364 proc(device, span, width, 255);
399 SkBlitRow::Proc32 proc = fProc32; local
402 proc(device, span, width, 255);
494 SkBlitMask::RowProc proc = NULL; local
500 proc = SkBlitMask::RowFactory(SkBitmap::kARGB_8888_Config, mask.fFormat,
502 if (NULL == proc) {
534 proc(dstRow, maskRow, span, width)
573 SkBlitRow::Proc32 proc = (255 == alpha) ? fProc32 : fProc32Blend; local
629 SkBlitRow::Proc32 proc = (255 == alpha) ? fProc32 : fProc32Blend; local
    [all...]
SkSpriteBlitter_RGB16.cpp 290 SkBlitRow::Proc proc = fProc; local
294 proc(dst, src, width, alpha, x, y);
302 SkBlitRow::Proc fProc;
  /external/skia/src/effects/
SkColorFilters.cpp 60 SkXfermodeProc proc = fProc; variable
63 result[i] = proc(color, shader[i]);
  /external/skia/src/views/
SkEventSink.cpp 225 SkEvent::Proc proc = evt.getTargetProc(); local
226 if (proc) {
227 return proc(evt) ? kHandled_EventResult : kNotHandled_EventResult;
  /external/skia/tests/
BlitRowTest.cpp 27 typedef int (*Proc)(const void*, int width, uint32_t expected, uint32_t* bad);
67 static Proc find_proc(const SkBitmap& bm, SkPMColor expect32, uint16_t expect16,
90 Proc proc = find_proc(bm, expect32, expect16, expect8, &expect); local
93 int x = proc(bm.getAddr(0, y), bm.width(), expect, &bad);
  /external/skia/tools/
bench_pictures_main.cpp 173 SkPicture::InstallPixelRefProc proc; local
175 proc = &sk_tools::LazyDecodeBitmap;
177 proc = &SkImageDecoder::DecodeMemory;
179 SkAutoTUnref<SkPicture> picture(SkPicture::CreateFromStream(&inputStream, proc));

Completed in 5024 milliseconds

1 2 3 45 6 7 8 910