HomeSort by relevance Sort by last modified time
    Searched defs:exec (Results 126 - 150 of 348) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/kernel-headers/original/uapi/linux/
cn_proc.h 82 } exec; member in union:proc_event::__anon6629
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_transfer.c 30 uint32_t exec = (1 << 20); local
52 exec |= NVC0_M2MF_EXEC_LINEAR_IN;
68 exec |= NVC0_M2MF_EXEC_LINEAR_OUT;
82 if (!(exec & NVC0_M2MF_EXEC_LINEAR_IN)) {
89 if (!(exec & NVC0_M2MF_EXEC_LINEAR_OUT)) {
100 BEGIN_NVC0(push, NVC0_M2MF(EXEC), 1);
101 PUSH_DATA (push, exec);
119 uint32_t exec; local
131 exec = 0x200 /* 2D_ENABLE */ | 0x6 /* UNK */;
136 exec |= 0x100; /* DST_MODE_2D_LINEAR *
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttobjs.c 755 TT_ExecContext exec; local
761 exec = size->context;
763 exec = ( (TT_Driver)FT_FACE_DRIVER( face ) )->context;
765 if ( !exec )
768 TT_Load_Context( exec, face, size );
770 exec->callTop = 0;
771 exec->top = 0;
773 exec->period = 64;
774 exec->phase = 0;
775 exec->threshold = 0
849 TT_ExecContext exec; local
    [all...]
  /external/wpa_supplicant_8/hs20/client/
spp_client.c 504 static int hs20_spp_exec(struct hs20_osu_client *ctx, xml_node_t *exec,
518 debug_dump_node(ctx, "exec", exec);
520 xml_node_for_each_child(ctx->xml, cmd, exec) {
525 wpa_printf(MSG_INFO, "exec command element not found (cmd=%p)",
579 wpa_printf(MSG_INFO, "Unsupported exec command: '%s'", name);
598 xml_node_t *update = NULL, *exec = NULL, *add_mo = NULL, *no_mo = NULL; local
628 if (!exec && strcasecmp(name, "exec") == 0)
629 exec = child
    [all...]
  /frameworks/support/tests/java/android/support/v4/provider/
DocumentFileTest.java 95 public void exec(DocumentFile doc) throws Exception; method in interface:DocumentFileTest.DocumentTest
101 public void exec(DocumentFile doc) throws Exception {
111 test.exec(DocumentFile.fromFile(root));
112 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri));
118 public void exec(DocumentFile doc) throws Exception {
143 test.exec(DocumentFile.fromFile(root));
144 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri));
150 public void exec(DocumentFile doc) throws Exception {
174 test.exec(DocumentFile.fromFile(root));
175 test.exec(DocumentFile.fromTreeUri(getContext(), treeUri))
    [all...]
  /libcore/luni/src/main/java/java/lang/
Runtime.java 117 * this method is equivalent to calling {@code exec(progArray, null, null)}.
127 public Process exec(String[] progArray) throws java.io.IOException { method in class:Runtime
128 return exec(progArray, null, null);
135 * {@code exec(progArray, envp, null)}.
148 public Process exec(String[] progArray, String[] envp) throws java.io.IOException { method in class:Runtime
149 return exec(progArray, envp, null);
171 public Process exec(String[] progArray, String[] envp, File directory) throws IOException { method in class:Runtime
173 return ProcessManager.getInstance().exec(progArray, envp, directory, false);
179 * equivalent to calling {@code exec(prog, null, null)}.
188 public Process exec(String prog) throws java.io.IOException method in class:Runtime
207 public Process exec(String prog, String[] envp) throws java.io.IOException { method in class:Runtime
229 public Process exec(String prog, String[] envp, File directory) throws java.io.IOException { method in class:Runtime
    [all...]
ProcessManager.java 138 // This wait will return because of the notifyAll call in exec.
160 private static native int exec(String[] command, String[] environment, method in class:ProcessManager
167 public Process exec(String[] taintedCommand, String[] taintedEnvironment, File workingDirectory, method in class:ProcessManager
181 // Check we're not passing null Strings to the native exec.
209 pid = exec(command, environment, workingPath, in, out, err, redirectErrorStream);
211 IOException wrapper = new IOException("Error running exec()."
  /libcore/luni/src/main/java/java/util/concurrent/
CountedCompleter.java 683 protected final boolean exec() { method in class:CountedCompleter
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadScanner.java 61 public void exec(MediaScannerConnection conn) { method in class:DownloadScanner.ScanRequest
108 req.exec(mConnection);
123 req.exec(mConnection);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
cn_proc.h 78 } exec; member in union:proc_event::__anon25710
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
cn_proc.h 78 } exec; member in union:proc_event::__anon27446
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
cn_proc.h 62 } exec; member in union:proc_event::__anon55112
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
cn_proc.h 62 } exec; member in union:proc_event::__anon55879
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
cn_proc.h 62 } exec; member in union:proc_event::__anon56658
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
cn_proc.h 62 } exec; member in union:proc_event::__anon57436
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
cn_proc.h 62 } exec; member in union:proc_event::__anon58212
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
cn_proc.h 62 } exec; member in union:proc_event::__anon58989
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compile.py 10 compile("hi", "<test>", "exec")
11 compile("hi\r", "<test>", "exec")
14 compile("", "<test>", "exec")
17 compile("\r\n", "<test>", "exec")
18 compile("\r", "<test>", "exec")
19 compile("hi\r\nstuff\r\ndef f():\n pass\r", "<test>", "exec")
20 compile("this_is\rreally_old_mac\rdef f():\n pass", "<test>", "exec")
36 exec 'def f(a, a): pass'
41 exec 'def f(a = 0, a = 1): pass'
46 exec 'def f(a): global a; a = 1
329 compile("from None import x", "tmp", "exec") namespace
330 compile("from x import None as y", "tmp", "exec") namespace
331 compile("import None as x", "tmp", "exec") namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compile.py 10 compile("hi", "<test>", "exec")
11 compile("hi\r", "<test>", "exec")
14 compile("", "<test>", "exec")
17 compile("\r\n", "<test>", "exec")
18 compile("\r", "<test>", "exec")
19 compile("hi\r\nstuff\r\ndef f():\n pass\r", "<test>", "exec")
20 compile("this_is\rreally_old_mac\rdef f():\n pass", "<test>", "exec")
36 exec 'def f(a, a): pass'
41 exec 'def f(a = 0, a = 1): pass'
46 exec 'def f(a): global a; a = 1
329 compile("from None import x", "tmp", "exec") namespace
330 compile("from x import None as y", "tmp", "exec") namespace
331 compile("import None as x", "tmp", "exec") namespace
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_state.h 95 struct nouveau_heap *exec; member in struct:nv30_vertprog
  /external/chromium_org/third_party/skia/forth/
Forth.cpp 85 this->exec(&engine);
163 static void Exec(const intptr_t*, ForthEngine*);
228 void FCode::Exec(const intptr_t* curr, ForthEngine* engine) {
233 reinterpret_cast<ForthWord*>(c)->exec(engine);
272 virtual void exec(ForthEngine* engine) { function in class:CustomWord
273 FCode::Exec(fCode, engine);
489 FCode::Exec(fImpl->fBuilder.begin(), &engine);
498 FCode::Exec(builder.begin(), &engine);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_state.h 95 struct nouveau_heap *exec; member in struct:nv30_vertprog
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
a.out.h 8 struct exec struct
31 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
32 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
33 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff)
34 #define N_SET_INFO(exec, magic, type, flags) \
35 ((exec).a_info = ((magic) & 0xffff) \
38 #define N_SET_MAGIC(exec, magic)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
a.out.h 8 struct exec struct
31 #define N_MAGIC(exec) ((exec).a_info & 0xffff)
32 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff))
33 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff)
34 #define N_SET_INFO(exec, magic, type, flags) \
35 ((exec).a_info = ((magic) & 0xffff) \
38 #define N_SET_MAGIC(exec, magic)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_api.c 60 static void reset_attrfv( struct vbo_exec_context *exec );
67 static void vbo_exec_wrap_buffers( struct vbo_exec_context *exec )
69 if (exec->vtx.prim_count == 0) {
70 exec->vtx.copied.nr = 0;
71 exec->vtx.vert_count = 0;
72 exec->vtx.buffer_ptr = exec->vtx.buffer_map;
75 GLuint last_begin = exec->vtx.prim[exec->vtx.prim_count-1].begin;
78 if (exec->ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END)
370 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
574 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
601 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
808 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
865 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1140 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1175 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1292 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
1309 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; local
    [all...]

Completed in 2019 milliseconds

1 2 3 4 56 7 8 91011>>