/external/qemu/distrib/sdl-1.2.12/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); 378 DIR *proc; local 393 proc = opendir("/proc"); 394 if ( proc ) { [all...] |
/external/qemu/distrib/sdl-1.2.12/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/e2fsprogs/e2fsck/ |
e2fsck.h | 479 struct ext2_inode * inode, const char * proc); 481 struct ext2_inode * inode, const char * proc); 484 const char *proc);
|
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/ |
SDL_wingl.c | 634 void *WIN_GL_GetProcAddress(_THIS, const char* proc) 639 func = this->gl_data->wglGetProcAddress(proc); 642 func = GetProcAddress(this->gl_config.dll_handle, proc);
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11gl.c | 541 void *X11_GL_GetProcAddress(_THIS, const char* proc) 547 return this->gl_data->glXGetProcAddress((const GLubyte *)proc); 549 return GL_LoadFunction(handle, proc);
|
/frameworks/base/cmds/dumpstate/ |
utils.c | 44 if (!(d = opendir("/proc"))) { 45 printf("Failed to open /proc (%s)\n", strerror(errno)); 60 sprintf(cmdpath,"/proc/%d/cmdline", pid); 81 sprintf(path, "/proc/%d/wchan", pid); 115 if (memcmp(path, "/proc/", 6) && memcmp(path, "/sys/", 5) && !fstat(fd, &st)) { 357 /* walk /proc and kill -QUIT all Dalvik processes */ 358 DIR *proc = opendir("/proc"); local 359 if (proc == NULL) { 360 fprintf(stderr, "/proc: %s\n", strerror(errno)) [all...] |
/external/iproute2/examples/ |
dhcp-client-script | 347 if [ -d /proc/sys/net/ipv4/conf/$interface ]; then 350 if [ -d /proc/sys/net/ipv4/conf/$interface ]; then
|
/external/kernel-headers/original/linux/ |
rtc.h | 126 int (*proc)(struct device *, struct seq_file *); member in struct:rtc_class_ops
|
/external/openssl/crypto/rc4/asm/ |
rc4-ia64.S | 73 .proc RC4#
|
/external/bluetooth/glib/glib/ |
gutils.h | 271 # define ATEXIT(proc) g_ATEXIT(proc)
|
/external/skia/src/core/ |
SkSpriteBlitter_ARGB32.cpp | 52 SkBlitRow::Proc32 proc = fProc32; local 56 proc(dst, src, width, alpha);
|
SkBlitter.cpp | 765 typedef void (*Proc)(void*); 766 SkAutoCallProc(void* obj, Proc proc) 767 : fObj(obj), fProc(proc) 784 Proc fProc; 955 void (*proc)(void*) = ((void*)storage == (void*)blitter) ? destroy_blitter : delete_blitter; 956 SkAutoCallProc tmp(blitter, proc); 958 blitter = SkNEW_ARGS(Sk3DBlitter, (blitter, shader3D, proc));
|
SkSpriteBlitter_RGB16.cpp | 298 SkBlitRow::Proc proc = fProc; local 302 proc(dst, src, width, alpha, x, y); 310 SkBlitRow::Proc fProc;
|
/external/skia/tests/ |
BlitRowTest.cpp | 20 typedef int (*Proc)(const void*, int width, uint32_t expected, uint32_t* bad); 60 static Proc find_proc(const SkBitmap& bm, SkPMColor expect32, uint16_t expect16, 83 Proc proc = find_proc(bm, expect32, expect16, expect8, &expect); local 86 int x = proc(bm.getAddr(0, y), bm.width(), expect, &bad);
|
/hardware/msm7k/librpc/ |
xdr.c | 139 * same as xdr_hyper - open coded to save a proc call! 251 * proc is the routine to handle the referenced structure. 257 xdrproc_t proc) /* xdr routine to handle the object */ 276 stat = (*proc) (xdrs, *pp, LASTUNSIGNED);
|
/system/extras/tests/fstest/ |
perm_checker.conf | 110 /proc/ 555 555 root root root root 111 /proc/... 000 777 root 19999 root 19999 112 /proc/sys/kernel/sched_nr_migrate 000 1664 root root root root
|
/external/qemu/distrib/sdl-1.2.12/src/video/dga/ |
SDL_dgavideo.c | 227 FILE *proc; local 235 proc = fopen("/proc/self/maps", "r"); 236 if ( proc ) { 237 while ( fgets(line, sizeof(line)-1, proc) ) { 244 fclose(proc);
|
/external/zlib/contrib/masmx86/ |
gvmat32.asm | 140 longest_match_7fff proc near
142 _longest_match_7fff proc near
550 cpudetect32 proc near
552 _cpudetect32 proc near
674 longest_match proc near
676 _longest_match proc near
680 longest_match_686 proc near
682 _longest_match_686 proc near
955 match_init proc near
959 _match_init proc near [all...] |
/external/v8/benchmarks/ |
earley-boyer.js | [all...] |
/external/webkit/SunSpider/tests/v8-v4/ |
v8-earley-boyer.js | [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
SDL_sysvideo.cc | 65 static void* BE_GL_GetProcAddress(_THIS, const char *proc); 685 void* BE_GL_GetProcAddress(_THIS, const char *proc) 690 if ((err = get_image_symbol((image_id)_this->gl_config.dll_handle, proc, B_SYMBOL_TYPE_ANY, &location)) == B_OK) {
|
/external/libffi/src/pa/ |
hpux32.S | 56 .proc 271 .proc
|
linux.S | 49 .proc 262 .proc
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/ |
CDPlayer.c | 514 void SetCompletionProc (CDPlayerCompletionProc proc, SDL_CD *cdrom) 519 completionProc = proc;
|
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/ |
xf86_OSlib.h | 152 # include <sys/proc.h> 289 #include <sys/proc.h>
|