Searched defs:arg (Results 1 - 25 of 181) sorted by relevance

12345678

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregtrav.c37 int level, void* arg)
46 level, ONIG_TRAVERSE_CALLBACK_AT_FIRST, arg);
52 callback_func, level + 1, arg);
58 level, ONIG_TRAVERSE_CALLBACK_AT_LAST, arg);
68 int(*callback_func)(int,int,int,int,int,void*), void* arg)
72 callback_func, 0, arg);
35 capture_tree_traverse(OnigCaptureTreeNode* node, int at, int(*callback_func)(int,int,int,int,int,void*), int level, void* arg) argument
67 onig_capture_tree_traverse(OnigRegion* region, int at, int(*callback_func)(int,int,int,int,int,void*), void* arg) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dintrcheck.c115 checksignals_witharg(void * arg) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dthread_cthread.h30 PyThread_start_new_thread(void (*func)(void *), void *arg) argument
41 cthread_detach(cthread_fork((cthread_fn_t) func, arg));
H A Dthread_foobar.h14 PyThread_start_new_thread(void (*func)(void *), void *arg) argument
H A Dthread_wince.h25 long PyThread_start_new_thread(void (*func)(void *), void *arg) argument
34 rv = _beginthread(func, 0, arg); /* use default stack size */
H A Dthread_lwp.h29 long PyThread_start_new_thread(void (*func)(void *), void *arg) argument
36 success = lwp_create(&tid, func, MINPRIO, 0, lwp_newstk(), 1, arg);
H A Dthread_solaris.h21 void *arg; member in struct:func_arg
28 void *arg; local
31 arg = ((struct func_arg *) funcarg)->arg;
33 (*func)(arg);
39 PyThread_start_new_thread(void (*func)(void *), void *arg) argument
49 funcarg->arg = arg;
H A Dthread_pth.h52 long PyThread_start_new_thread(void (*func)(void *), void *arg) argument
61 (void *)arg
H A Dthread_atheos.h99 long PyThread_start_new_thread(void (*func) (void *), void *arg) argument
111 tid = spawn_thread(name, func, NORMAL_PRIORITY, 0, arg);
H A Dthread_os2.h36 PyThread_start_new_thread(void (*func)(void *), void *arg) argument
43 arg);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dcellobject.c84 cell_traverse(PyCellObject *op, visitproc visit, void *arg) argument
H A Dgenobject.c11 gen_traverse(PyGenObject *gen, visitproc visit, void *arg) argument
45 gen_send_ex(PyGenObject *gen, PyObject *arg, int exc) argument
58 if (arg && !exc)
64 if (arg && arg != Py_None) {
71 /* Push arg onto the frame's value stack */
72 result = arg ? arg : Py_None;
102 if (arg)
116 "send(arg)
120 gen_send(PyGenObject *gen, PyObject *arg) argument
[all...]
H A Diterobject.c39 iter_traverse(seqiterobject *it, visitproc visit, void *arg) argument
161 calliter_traverse(calliterobject *it, visitproc visit, void *arg) argument
H A Dmoduleobject.c209 module_traverse(PyModuleObject *m, visitproc visit, void *arg) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Drotatingtree.c108 void *arg)
113 result = RotatingTree_Enum(root->left, enumfn, arg);
116 result = enumfn(root, arg);
107 RotatingTree_Enum(rotating_node_t *root, rotating_tree_enum_fn enumfn, void *arg) argument
H A Dfcntlmodule.c30 /* fcntl(fd, opt, [arg]) */
37 long arg; local
47 "fcntl string arg too long");
62 arg = 0;
66 conv_descriptor, &fd, &code, &arg)) {
70 ret = fcntl(fd, code, arg);
80 "fcntl(fd, opt, [arg])\n\
84 available from the fcntl module. The argument arg is optional, and\n\
85 defaults to 0; it may be an int or a string. If arg is given as a string,\n\
87 resulting value put in the arg buffe
114 int arg; local
124 char *arg; local
[all...]
H A Dxxmodule.c31 newXxoObject(PyObject *arg) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dcellobject.c84 cell_traverse(PyCellObject *op, visitproc visit, void *arg) argument
H A Dgenobject.c11 gen_traverse(PyGenObject *gen, visitproc visit, void *arg) argument
45 gen_send_ex(PyGenObject *gen, PyObject *arg, int exc) argument
58 if (arg && !exc)
64 if (arg && arg != Py_None) {
71 /* Push arg onto the frame's value stack */
72 result = arg ? arg : Py_None;
99 if (arg)
113 "send(arg)
117 gen_send(PyGenObject *gen, PyObject *arg) argument
[all...]
H A Diterobject.c39 iter_traverse(seqiterobject *it, visitproc visit, void *arg) argument
161 calliter_traverse(calliterobject *it, visitproc visit, void *arg) argument
H A Dmoduleobject.c207 module_traverse(PyModuleObject *m, visitproc visit, void *arg) argument
/device/generic/goldfish/libqemu/
H A Dtest_host_1.c160 char* arg = argv[1]; local
161 if (!strcmp(arg, "-?") || !strcmp(arg, "-h") || !strcmp(arg, "--help")) {
163 } else if (!strcmp(arg, "-unix")) {
171 } else if (!strcmp(arg, "-tcp")) {
180 fprintf(stderr, "UNKNOWN OPTION: %s\n\n", arg);
H A Dtest_guest_2.c74 char* arg = argv[1]; local
75 if (!strcmp(arg, "-?") || !strcmp(arg, "-h") || !strcmp(arg, "--help")) {
77 } else if (!strcmp(arg, "-pipe")) {
85 } else if (!strcmp(arg, "-tcp")) {
93 } else if (!strcmp(arg, "-size")) {
102 fprintf(stderr, "UNKNOWN OPTION: %s\n\n", arg);
/device/huawei/angler/power/
H A Dpower-8994.c63 static void* video_encode_hint_function(void* arg) { argument
68 uintptr_t expected_counter = (uintptr_t)arg;
/device/lge/bullhead/power/
H A Dpower-8992.c63 static void* video_encode_hint_function(void* arg) { argument
68 uintptr_t expected_counter = (uintptr_t)arg;

Completed in 319 milliseconds

12345678