Searched refs:action (Results 1 - 25 of 51) sorted by relevance

123

/seL4-refos-master/libs/libmuslc/src/termios/
H A Dtcflow.c4 int tcflow(int fd, int action) argument
6 return ioctl(fd, TCXONC, action);
/seL4-refos-master/libs/libmuslc/src/misc/
H A Dfmtmsg.c25 const char *text, const char *action, const char *tag)
30 "label", "severity", "text", "action", "tag", NULL
49 action?"\nTO FIX: ":"",
50 action?action:"", action?" ":"",
78 (verb&8 && action) ? "\nTO FIX: " : "",
79 (verb&8 && action) ? action : "",
80 (verb&8 && action)
24 fmtmsg(long classification, const char *label, int severity, const char *text, const char *action, const char *tag) argument
[all...]
/seL4-refos-master/kernel/libsel4/tools/
H A Dinvocation_header_gen.py150 parser.add_argument('--libsel4', action='store_true',
153 group.add_argument('--arch', action='store_true',
155 group.add_argument('--sel4_arch', action='store_true',
H A Dsyscall_header_gen.py136 parser.add_argument('--mcs', action='store_true',
/seL4-refos-master/kernel/manual/tools/libsel4_tools/
H A Dinvocation_header_gen.py150 parser.add_argument('--libsel4', action='store_true',
153 group.add_argument('--arch', action='store_true',
155 group.add_argument('--sel4_arch', action='store_true',
H A Dsyscall_header_gen.py136 parser.add_argument('--mcs', action='store_true',
/seL4-refos-master/kernel/tools/
H A Dinvocation_header_gen.py150 parser.add_argument('--libsel4', action='store_true',
153 group.add_argument('--arch', action='store_true',
155 group.add_argument('--sel4_arch', action='store_true',
H A Dhardware_gen.py42 group.add_argument('--' + name, help=task.__doc__.strip(), action='store_true')
78 action='store_const', const=True, default=False)
H A Dsyscall_header_gen.py136 parser.add_argument('--mcs', action='store_true',
/seL4-refos-master/libs/libsel4/tools/
H A Dinvocation_header_gen.py150 parser.add_argument('--libsel4', action='store_true',
153 group.add_argument('--arch', action='store_true',
155 group.add_argument('--sel4_arch', action='store_true',
/seL4-refos-master/libs/libmuslc/src/search/
H A Dtsearch_avl.c186 static void walk(const struct node *r, void (*action)(const void *, VISIT, int), int d)
191 action(r, leaf, d);
193 action(r, preorder, d);
194 walk(r->left, action, d+1);
195 action(r, postorder, d);
196 walk(r->right, action, d+1);
197 action(r, endorder, d);
201 void twalk(const void *root, void (*action)(const void *, VISIT, int))
203 walk(root, action, 0);
H A Dhsearch.c96 ENTRY *hsearch(ENTRY item, ACTION action) argument
100 __hsearch_r(item, action, &e, &htab);
128 int __hsearch_r(ENTRY item, ACTION action, ENTRY **retval, struct hsearch_data *htab) argument
137 if (action == FIND) {
/seL4-refos-master/libs/libplatsupport/plat_include/pc99/platsupport/plat/acpi/tables/
H A Derst.h16 uint8_t action; member in struct:acpi_erst_entry
/seL4-refos-master/projects/util_libs/libplatsupport/plat_include/pc99/platsupport/plat/acpi/tables/
H A Derst.h16 uint8_t action; member in struct:acpi_erst_entry
/seL4-refos-master/projects/refos/impl/
H A Dcidl_compile193 parser.add_argument('-r', '--header', action='store_true',\
195 parser.add_argument('-c', '--client', action='store_true',\
197 parser.add_argument('-s', '--server', action='store_true',\
199 parser.add_argument('-d', '--dispatcher', action='store_true',\
201 parser.add_argument('-n', '--no_preprocess', action='store_false',\
203 parser.add_argument('-g', '--debug', action='store_true',\
205 parser.add_argument('-v', '--version', action='version',\
207 parser.add_argument('filename', metavar='IDL_FILE', action='store', \
/seL4-refos-master/
H A Dcidl_compile193 parser.add_argument('-r', '--header', action='store_true',\
195 parser.add_argument('-c', '--client', action='store_true',\
197 parser.add_argument('-s', '--server', action='store_true',\
199 parser.add_argument('-d', '--dispatcher', action='store_true',\
201 parser.add_argument('-n', '--no_preprocess', action='store_false',\
203 parser.add_argument('-g', '--debug', action='store_true',\
205 parser.add_argument('-v', '--version', action='version',\
207 parser.add_argument('filename', metavar='IDL_FILE', action='store', \
/seL4-refos-master/seL4_tools/cmake-tool/helpers/
H A Delf_sift.py73 parser.add_argument('--align', action='store_true',
75 parser.add_argument('--reserve', metavar='BYTES', type=int, action='store',
/seL4-refos-master/libs/libutils/include/utils/
H A Dlist.h53 * the caller's action ever returns non-zero the traversal is aborted and that
56 int list_foreach(list_t *l, int(*action)(void *, void *), void *token);
/seL4-refos-master/projects/util_libs/libutils/include/utils/
H A Dlist.h53 * the caller's action ever returns non-zero the traversal is aborted and that
56 int list_foreach(list_t *l, int(*action)(void *, void *), void *token);
/seL4-refos-master/libs/libutils/src/
H A Dlist.c94 int list_foreach(list_t *l, int(*action)(void *, void *), void *token)
98 int res = action(n->data, token);
/seL4-refos-master/projects/util_libs/libutils/src/
H A Dlist.c94 int list_foreach(list_t *l, int(*action)(void *, void *), void *token)
98 int res = action(n->data, token);
/seL4-refos-master/seL4_tools/cmake-tool/simulate_scripts/
H A Dsimulate.py18 parser.add_argument('-d', '--gdbserver', dest="qemu_gdbserver", action='store_true',
/seL4-refos-master/projects/seL4_libs/libsel4test/tools/
H A Dextract_results.py75 help='Suppress unmodified output to stdout', action='store_true',
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Dmkobj.c646 short action; local
655 action = ROT_CORPSE; /* default action: rot away */
669 action = REVIVE_MON;
677 action = REVIVE_MON;
684 (void) start_timer(when, TIMER_OBJECT, action, (genericptr_t)body);
1193 short action = ROT_CORPSE; local
1200 tleft = stop_timer(action, (genericptr_t)otmp);
1202 action = REVIVE_MON;
1203 tleft = stop_timer(action, (genericptr_
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Dmkobj.c646 short action; local
655 action = ROT_CORPSE; /* default action: rot away */
669 action = REVIVE_MON;
677 action = REVIVE_MON;
684 (void) start_timer(when, TIMER_OBJECT, action, (genericptr_t)body);
1193 short action = ROT_CORPSE; local
1200 tleft = stop_timer(action, (genericptr_t)otmp);
1202 action = REVIVE_MON;
1203 tleft = stop_timer(action, (genericptr_
[all...]

Completed in 105 milliseconds

123