Searched defs:proc (Results 1 - 25 of 184) sorted by relevance

12345678

/external/chromium_org/tools/gyp/test/ios/app-bundle/TestApp/
H A Dcheck_no_signature.py8 proc = subprocess.Popen(['codesign', '-v', p], variable
10 o = proc.communicate()[0].strip()
/external/compiler-rt/test/Unit/
H A Dtrampoline_setup_test.c31 nested_func_t proc; variable
43 proc = bar;
47 if ( (*proc)(3) != 43 )
50 if ( (*proc)(4) != 40 )
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DLightScatteringUI.java48 public LightScatteringUI(InputManager inputManager, LightScatteringFilter proc) { argument
49 filter=proc;
/external/jmonkeyengine/engine/src/test/jme3test/water/
H A DWaterUI.java47 public WaterUI(InputManager inputManager, SimpleWaterProcessor proc) { argument
48 processor=proc;
/external/chromium_org/third_party/jemalloc/chromium/
H A Dbuild-crt.py8 proc = Popen(['nmake', 'dll_', 'mt'], stdout=PIPE, stderr=STDOUT, variable
12 line = proc.stdout.readline()
20 sys.exit(proc.wait())
/external/chromium_org/third_party/jemalloc/vendor/
H A Dbuild-crt.py8 proc = Popen(['nmake', 'dll_', 'mt'], stdout=PIPE, stderr=STDOUT, variable
12 line = proc.stdout.readline()
20 sys.exit(proc.wait())
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_getprocaddress.c43 PROC proc; member in struct:stw_extension_entry
94 return entry->proc;
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_getprocaddress.c43 PROC proc; member in struct:stw_extension_entry
94 return entry->proc;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp38 __serializer<T>::proc(os, x);
45 __serializer<T>::proc(is, x);
52 __serializer<T>::proc(is, x);
61 proc(compat::ostream &os, const T &x) { function in struct:__anon13297::__serializer
66 proc(compat::istream &is, T &x) { function in struct:__anon13297::__serializer
75 proc(compat::ostream &os, const compat::vector<T> &v) { function in struct:__anon13297::__serializer
83 proc(compat::istream &is, compat::vector<T> &v) { function in struct:__anon13297::__serializer
96 proc(S &s, QT &x) { function in struct:__anon13297::__serializer
108 proc(S &s, QT &x) { function in struct:__anon13297::__serializer
119 proc( function in struct:__anon13297::__serializer
131 proc(S &s, QT &x) { function in struct:__anon13297::__serializer
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dmodule.cpp38 __serializer<T>::proc(os, x);
45 __serializer<T>::proc(is, x);
52 __serializer<T>::proc(is, x);
61 proc(compat::ostream &os, const T &x) { function in struct:__anon23782::__serializer
66 proc(compat::istream &is, T &x) { function in struct:__anon23782::__serializer
75 proc(compat::ostream &os, const compat::vector<T> &v) { function in struct:__anon23782::__serializer
83 proc(compat::istream &is, compat::vector<T> &v) { function in struct:__anon23782::__serializer
96 proc(S &s, QT &x) { function in struct:__anon23782::__serializer
108 proc(S &s, QT &x) { function in struct:__anon23782::__serializer
119 proc( function in struct:__anon23782::__serializer
131 proc(S &s, QT &x) { function in struct:__anon23782::__serializer
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macgl.c191 void* Mac_GL_GetProcAddress(_THIS, const char *proc) argument
193 return SDL_LoadFunction( this->hidden->libraryHandle, proc );
/external/skia/tests/
H A DTLSTest.cpp34 static void test_threads(SkThread::entryPointProc proc) { argument
40 threads[i] = new SkThread(proc);
/external/skia/bench/
H A DPathUtilsBench.cpp45 PathUtilsBench(Proc proc, const char name[]) { argument
46 fProc = proc;
/external/skia/gm/
H A Dshallowgradient.cpp40 ShallowGradientGM(MakeShaderProc proc, const char name[]) : fProc(proc) { argument
/external/apache-http/src/org/apache/http/protocol/
H A DHttpService.java74 * @param proc the processor to use on requests and responses
79 final HttpProcessor proc,
83 setHttpProcessor(proc);
78 HttpService( final HttpProcessor proc, final ConnectionReuseStrategy connStrategy, final HttpResponseFactory responseFactory) argument
/external/chromium_org/sandbox/linux/suid/
H A Dlinux_util.c22 // expected prefix of the target of the /proc/self/fd/%d link for a socket
25 // Parse a symlink in /proc/pid/fd/$x and return the inode number of the
28 // path: e.g. /proc/1234/fd/5 (must be a UNIX domain socket descriptor)
68 DIR* proc = opendir("/proc"); local
69 if (!proc)
74 while ((dent = readdir(proc))) {
82 // /proc/$pid/fd owned by root. While scanning through /proc, we add this
85 // that if user foo owns process N, then /proc/
[all...]
/external/chromium_org/third_party/skia/include/pipe/
H A DSkGPipe.h47 void setBitmapDecoder(SkPicture::InstallPixelRefProc proc) { fProc = proc; } argument
/external/chromium_org/third_party/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/chromium_org/third_party/skia/src/pipe/utils/
H A DSamplePipeControllers.cpp15 PipeController::PipeController(SkCanvas* target, SkPicture::InstallPixelRefProc proc) argument
19 fReader.setBitmapDecoder(proc);
44 SkPicture::InstallPixelRefProc proc,
46 : INHERITED(NULL, proc) {
70 fReaders[i - 1].setBitmapDecoder(proc);
43 TiledPipeController(const SkBitmap& bitmap, SkPicture::InstallPixelRefProc proc, const SkMatrix* initial) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dcoff-objfmt.h33 /*@dependent@*/ yasm_symrec *proc; /* Start of procedure */ member in struct:coff_unwind_code
52 /*@dependent@*/ yasm_symrec *proc; /* Start of procedure */ member in struct:coff_unwind_info
/external/chromium_org/ui/gl/
H A Dgl_implementation.cc135 void SetGLGetProcAddressProc(GLGetProcAddressProc proc) { argument
136 DCHECK(proc);
137 g_get_proc_address = proc;
145 void* proc = base::GetFunctionPointerFromNativeLibrary((*g_libraries)[i], local
147 if (proc)
148 return proc;
153 void* proc = g_get_proc_address(name); local
154 if (proc)
155 return proc;
164 void* proc local
[all...]
/external/kernel-headers/original/asm-arm/
H A Dprocinfo.h27 * arch/arm/mm/proc-*.S and arch/arm/kernel/head.S
39 struct processor *proc; member in struct:proc_info_list
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.c55 void opd_kill_maps(struct opd_proc * proc) argument
59 list_for_each_safe(pos, pos2, &proc->maps) {
68 void opd_add_mapping(struct opd_proc * proc, struct opd_image * image, argument
74 proc->tid, start, end, offset, image->name);
79 if (list_empty(&proc->maps)) {
80 if (proc->name)
81 free((char *)proc->name);
82 proc->name = xstrdup(image->name);
91 list_add_tail(&map->next, &proc->maps);
141 struct opd_proc * proc; local
[all...]
H A Dopd_parse_proc.c3 * Parsing of /proc/#pid
30 * @param proc process to add map to
35 * and add the info to the process @proc. Returns %1
43 static int opd_add_ascii_map(struct opd_proc * proc, char const * line, argument
75 image = opd_get_image(cp, image_name, 0, proc->tid, proc->tgid);
79 opd_add_mapping(proc, image, start, offset, end);
87 * @param proc process to work on
89 * Read the /proc/<pid>/maps file and add all
90 * mapping information found to the process @proc
92 opd_get_ascii_maps(struct opd_proc * proc) argument
203 struct opd_proc * proc; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_gl.c134 void* ph_GL_GetProcAddress(_THIS, const char* proc) argument
139 void* ph_GL_GetProcAddress(_THIS, const char* proc) argument
152 function=qnxgl_get_func(proc, oglctx, 0);
155 function=dlsym(this->gl_config.dll_handle, proc);

Completed in 8626 milliseconds

12345678