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

1 2 3 4 5 67 8 910

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
xdr.h 237 xdrproc_t proc; member in struct:xdr_discrim
  /system/core/adb/
jdwp_service.c 126 JdwpProcess* proc = _jdwp_list.next; local
128 for ( ; proc != &_jdwp_list; proc = proc->next ) {
132 if (proc->pid < 0)
135 len = snprintf(p, end-p, "%d\n", proc->pid);
159 jdwp_process_free( JdwpProcess* proc )
161 if (proc) {
164 proc->prev->next = proc->next
197 JdwpProcess* proc = calloc(1,sizeof(*proc)); local
237 JdwpProcess* proc = _proc; local
392 JdwpProcess* proc = _jdwp_list.next; local
518 JdwpProcess* proc; local
    [all...]
  /system/extras/libpagemap/include/pagemap/
pagemap.h 69 pm_process_t *proc; member in struct:pm_map
89 /* Get the map count (from /proc/kpagecount) of a physical frame.
93 /* Get the page flags (from /proc/kpageflags) of a physical frame.
131 #define pm_process_pid(proc) ((proc)->pid)
138 int pm_process_usage(pm_process_t *proc, pm_memusage_t *usage_out);
142 int pm_process_usage_flags(pm_process_t *proc, pm_memusage_t *usage_out,
147 int pm_process_workingset(pm_process_t *proc, pm_memusage_t *ws_out, int reset);
152 int pm_process_pagemap_range(pm_process_t *proc,
169 int pm_process_maps(pm_process_t *proc, pm_map_t ***maps_out, size_t *len)
    [all...]
  /system/extras/librank/
librank.c 37 struct process_info *proc; member in struct:mapping_info
127 struct mapping_info *get_mapping(struct library_info *library, struct process_info *proc) {
132 if (library->mappings[i]->proc == proc)
151 mapping->proc = proc;
205 pm_process_t *proc; local
333 error = pm_process_create(ker, pids[i], &proc);
341 error = pm_process_maps(proc, &maps, &num_maps);
343 fprintf(stderr, "Error listing maps for process %d.\n", proc->pid)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBlitter_RGB16.cpp 120 SkBlitRow::Proc fOpaqueProc;
121 SkBlitRow::Proc fAlphaProc;
845 SkBlitRow::Proc proc = fOpaqueProc; local
853 proc(dst, buffer, width, 0xFF, x, y);
860 proc(dst, buffer, width, 0xFF, x, y);
909 SkBlitRow::Proc proc = (aa == 0xFF) ? fOpaqueProc : fAlphaProc; local
910 proc(device, localSpan, count, aa, x, y);
    [all...]
SkScan_Path.cpp 116 PrePostProc proc) {
132 if (proc) {
133 proc(blitter, curr_y, PREPOST_START); // pre-proc
186 if (proc) {
187 proc(blitter, curr_y, PREPOST_END); // post-proc
221 PrePostProc proc) {
495 PrePostProc proc = NULL; local
500 proc = PrePostInverseBlitterProc
    [all...]
  /external/kernel-headers/original/linux/
rtc.h 126 int (*proc)(struct device *, struct seq_file *); member in struct:rtc_class_ops
  /external/qemu/distrib/sdl-1.2.15/src/video/dga/
SDL_dgavideo.c 222 FILE *proc; local
230 proc = fopen("/proc/self/maps", "r");
231 if ( proc ) {
232 while ( fgets(line, sizeof(line)-1, proc) ) {
239 fclose(proc);
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbevents.c 35 /* For parsing /proc */
345 /* Returns processes listed in /proc with the desired name */
346 static int find_pid(DIR *proc, const char *wanted_name)
351 /* First scan proc for the gpm process */
353 while ( (pid == 0) && ((entry=readdir(proc)) != NULL) ) {
359 SDL_snprintf(path, SDL_arraysize(path), "/proc/%s/status", entry->d_name);
379 DIR *proc; local
394 proc = opendir("/proc");
395 if ( proc ) {
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsevents.c 34 /* For parsing /proc */
319 /* Returns processes listed in /proc with the desired name */
320 static int find_pid(DIR *proc, const char *wanted_name)
325 /* First scan proc for the gpm process */
327 while ( (pid == 0) && ((entry=readdir(proc)) != NULL) ) {
333 SDL_snprintf(path, SDL_arraysize(path), "/proc/%s/status", entry->d_name);
352 DIR *proc; local
364 proc = opendir("/proc");
365 if ( proc ) {
    [all...]
  /external/skia/src/core/
SkBlitter_RGB16.cpp 120 SkBlitRow::Proc fOpaqueProc;
121 SkBlitRow::Proc fAlphaProc;
845 SkBlitRow::Proc proc = fOpaqueProc; local
853 proc(dst, buffer, width, 0xFF, x, y);
860 proc(dst, buffer, width, 0xFF, x, y);
909 SkBlitRow::Proc proc = (aa == 0xFF) ? fOpaqueProc : fAlphaProc; local
910 proc(device, localSpan, count, aa, x, y);
    [all...]
SkScan_Path.cpp 116 PrePostProc proc) {
132 if (proc) {
133 proc(blitter, curr_y, PREPOST_START); // pre-proc
186 if (proc) {
187 proc(blitter, curr_y, PREPOST_END); // post-proc
221 PrePostProc proc) {
495 PrePostProc proc = NULL; local
500 proc = PrePostInverseBlitterProc
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 119 FromColorProc proc = ChooseFromColorProc(dstBitmap.config(), isPremultiplied); local
121 if (NULL == dst || NULL == proc) {
132 proc(dst, src, width, x, y);
613 ToColorProc proc = ChooseToColorProc(*bitmap, isPremultiplied); local
614 if (NULL == proc) {
623 proc(dst, src, 1, bitmap->getColorTable());
632 ToColorProc proc = ChooseToColorProc(*bitmap, isPremultiplied); local
633 if (NULL == proc) {
645 proc(d, src, width, ctable);
661 FromColorProc proc = ChooseFromColorProc(bitmap->config(), isPremultiplied); local
    [all...]
  /hardware/libhardware_legacy/wifi/
wifi.c 100 static const char MODULE_FILE[] = "/proc/modules";
178 FILE *proc; local
193 if ((proc = fopen(MODULE_FILE, "r")) == NULL) {
198 while ((fgets(line, sizeof(line), proc)) != NULL) {
200 fclose(proc);
204 fclose(proc);
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_utils.h 302 const hwc_procs_t* proc; member in struct:hwc_context_t
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h 351 const hwc_procs_t* proc; member in struct:hwc_context_t
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_utils.h 302 const hwc_procs_t* proc; member in struct:hwc_context_t
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 129 struct snd_info_entry *proc; member in struct:snd_emux
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 129 struct snd_info_entry *proc; member in struct:snd_emux
  /system/core/toolbox/
top.c 93 static void free_proc(struct proc_info *proc);
95 static int read_stat(char *filename, struct proc_info *proc);
96 static void read_policy(int pid, struct proc_info *proc);
97 static void add_proc(int proc_num, struct proc_info *proc);
98 static int read_cmdline(char *filename, struct proc_info *proc);
99 static int read_status(char *filename, struct proc_info *proc);
197 struct proc_info *proc; local
200 proc = free_procs;
204 proc = malloc(sizeof(*proc));
229 struct proc_info *proc; local
410 struct proc_info *old_proc, *proc; local
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_win.cc 517 // Calling SetWindowLongPtrA here makes the window proc ASCII, which is
592 WNDPROC proc = reinterpret_cast<WNDPROC>(msg.time); local
597 CallWindowProc(proc, msg.hwnd, msg.message, msg.wParam, msg.lParam);
610 void WebPluginDelegateImpl::ThrottleMessage(WNDPROC proc, HWND hwnd,
614 msg.time = reinterpret_cast<DWORD>(proc);
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 638 PackColorProc proc; local
640 proc = &SkPackARGB32NoCheck;
642 proc = &SkPreMultiplyARGB;
646 *colorPtr++ = proc(*trans++, palette->red, palette->green, palette->blue);
1154 transform_scanline_proc proc = choose_proc(config, hasAlpha); local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkMatrix44.cpp 775 Map2Procf proc = (mask & kPerspective_Mask) ? map2_pf : gProc[mask]; local
776 proc(fMat, src2, count, dst4);
785 Map2Procd proc = (mask & kPerspective_Mask) ? map2_pd : gProc[mask]; local
786 proc(fMat, src2, count, dst4);
  /external/mksh/src/
jobs.c 40 typedef struct proc Proc;
41 struct proc { struct
42 Proc *next; /* next process in pipeline (if any) */
47 char command[64 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
79 Proc *proc_list; /* process list */
80 Proc *last_proc; /* last process in list */
149 static Proc *new_proc(void);
219 proc_errorlevel(Proc *p)
388 static Proc *last_proc
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 644 PackColorProc proc; local
646 proc = &SkPackARGB32NoCheck;
648 proc = &SkPreMultiplyARGB;
652 *colorPtr++ = proc(*trans++, palette->red, palette->green, palette->blue);
1161 transform_scanline_proc proc = choose_proc(config, hasAlpha); local
    [all...]

Completed in 1941 milliseconds

1 2 3 4 5 67 8 910