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

123

/barrelfish-master/lib/libc/stdlib/
H A Dtwalk.c31 cmp_fn_t action, int level)
35 (*action)(root, leaf, level);
37 (*action)(root, preorder, level);
39 trecurse(root->llink, action, level + 1);
40 (*action)(root, postorder, level);
42 trecurse(root->rlink, action, level + 1);
43 (*action)(root, endorder, level);
49 twalk(const void *vroot, cmp_fn_t action) /* Root of the tree to be walked */ argument
51 if (vroot != NULL && action != NULL)
52 trecurse(vroot, action,
30 trecurse(const node_t *root, cmp_fn_t action, int level) argument
[all...]
H A Dhcreate.c60 hsearch(ENTRY item, ACTION action) argument
70 if (hsearch_r(item, action, &retval, &global_hashtable) == 0)
H A Dhsearch_r.c76 hsearch_r(ENTRY item, ACTION action, ENTRY **retval, struct hsearch_data *htab) argument
99 /* Only perform the insertion if action is set to ENTER. */
100 if (action == FIND) {
/barrelfish-master/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DActionButton.java33 * action's enabled property, name and icon. However, note that the
35 * status does not alter that of the action.<p>
39 * action.
43 private Action action; field in class:ActionButton
45 public ActionButton(Action action) argument
48 this.action = action;
52 action.addPropertyChangeListener(this);
53 this.addActionListener(action);
58 setText((String) action
[all...]
H A DMultiViewletType.java335 Action action = (Action)it.next();
336 String name = (String)action.getValue(Action.NAME);
341 (Icon)action.getValue(Action.SMALL_ICON));
344 multiAction.actions.add(action);
364 Action action = (Action)it.next();
365 action.actionPerformed(event);
H A DVisClientStateModel.java55 * <li> Provide access to the vis client's Resume action and Interrupt action.
307 DebuggingSupport.logMessage(this, "disabling resume action");
316 DebuggingSupport.logMessage(this, "resume action performed");
342 * Class implementing the VisClient's record action.
364 /** Class implementing the VisClient's resume action. The action is
366 * HELD_ON_EVENT or during a multitasking phase. The action
368 * disables the resume action again. */
409 /** action execute
491 AutoResumeTimer(int delay, Action action) argument
[all...]
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Daddrmap.c257 _save_handler(int sig, sig_action_t *action) argument
262 action);
265 (void) sigvec(sig, (struct sigvec *) 0, action);
273 _install_handler(int sig, sig_action_t *action) argument
282 act.sa_flags = action->sa_flags & ~SA_RESETHAND;
284 act.sa_flags = action->sa_flags;
290 act.sa_flags = action->sa_flags & ~SV_RESETHAND;
293 action->sa_handler = (RETSIGTYPE (*)()) signal(sig, act.sa_handler);
302 _restore_handler(int sig, sig_action_t *action) argument
307 res = sigaction(sig, action, (struc
[all...]
H A Dhandlers.c596 sig_action_t action; local
611 Empty_Sig_Mask(action.sa_mask);
612 action.sa_flags = SA_INTERRUPT;
629 action.sa_flags = SA_ONSTACK | SA_INTERRUPT;
635 action.sa_flags = SA_ONSTACK;
641 action.sa_flags |= SA_SIGINFO;
646 action.sa_sigaction = _break;
648 action.sa_handler = _break;
659 action.sa_handler = SIG_DFL;
664 action
[all...]
/barrelfish-master/tools/harness/
H A Ddebug.py61 p.add_option('-q', '--quiet', action='store_const', dest=dest, const=QUIET,
63 p.add_option('-v', '--verbose', action='store_const', dest=dest,
65 p.add_option('--debug', action='store_const', dest=dest, const=DEBUG,
H A Dscalebench.py56 g.add_option('-b', '--build', action='append', dest='buildspecs',
62 g.add_option('-m', '--machine', action='append', dest='machinespecs',
64 g.add_option('-t', '--test', action='append', dest='testspecs',
68 g.add_option('-x', '--xml', dest='xml', action='store_true',
74 g.add_option('-L', '--listall', action='store_true', dest='listall',
77 g.add_option('-k', '--keepgoing', action='store_true', dest='keepgoing',
/barrelfish-master/include/
H A Dposixcompat.h35 typedef int (*pthread_placement_fn)(enum pthread_action action, int coreid);
/barrelfish-master/lib/libc/tests/gen/
H A Dfmtmsg_test.c43 const char *text, const char *action, const char *tag);
50 const char *action; member in struct:testcase
65 "text:severity:action:tag",
91 "tag:severity:text:nothing:action",
161 const char *text, const char *action, const char *tag)
180 if (fmtmsg(classification, label, severity, text, action, tag)
236 t->text, t->action, t->tag);
160 run_test(long classification, const char *label, int severity, const char *text, const char *action, const char *tag) argument
/barrelfish-master/lib/acpica/tests/aslts/bin/
H A DDo443 local lexem list nparam=$2 action=100
455 action=1
463 action=3
466 action=2
470 if [ $action == 1 ]; then
473 elif [ $action == 2 ]; then
476 elif [ $action == 3 ]; then
/barrelfish-master/lib/cxx/unwind/
H A DUnwind-seh.cpp75 _Unwind_Action action; local
107 action = (_Unwind_Action)ms_exc->ExceptionInformation[2];
124 action = (_Unwind_Action)(_UA_CLEANUP_PHASE | _UA_FORCE_UNWIND);
126 action = _UA_SEARCH_PHASE;
129 action = (_Unwind_Action)(_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME);
131 action = _UA_CLEANUP_PHASE;
137 (void *)pers, action, exc->exception_class,
139 urc = pers(1, action, exc->exception_class, exc, ctx);
145 if (action & _UA_HANDLER_FRAME)
276 _Unwind_Action action local
[all...]
H A DUnwind-sjlj.c189 _Unwind_Action action = _UA_CLEANUP_PHASE; local
191 action = (_Unwind_Action)(
196 (*c->personality)(1, action, exception_object->exception_class,
254 _Unwind_Action action = local
257 (*stop)(1, action, exception_object->exception_class, exception_object,
276 (*p)(1, action, exception_object->exception_class, exception_object,
H A DUnwindLevel1.c193 _Unwind_Action action = _UA_CLEANUP_PHASE; local
196 action = (_Unwind_Action)(_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME);
199 (*p)(1, action, exception_object->exception_class, exception_object,
280 _Unwind_Action action = local
283 (*stop)(1, action, exception_object->exception_class, exception_object,
303 (*p)(1, action, exception_object->exception_class, exception_object,
/barrelfish-master/tools/
H A Dmkefi.py38 action="store_true")
/barrelfish-master/tools/aarch64_gem5/
H A Dgem5script.py77 parser.add_option("--kernel", action="store", type="string")
78 parser.add_option("--ramdisk", action="store", type="string")
83 parser.add_option("--caches", action="store_true")
84 parser.add_option("--l2cache", action="store_true")
95 parser.add_option("--clock", action="store", type="string", default='1GHz')
96 #parser.add_option("--memchecker", action="store_true")
97 #parser.add_option("-d", "--detailed", action="store_true")
/barrelfish-master/usr/drivers/usb/usb_keyboard/
H A Dusb_keyboard_driver.c96 uint32_t action; local
111 action = keyboard.last_active[keycode];
114 switch (action) {
146 return (SPCLKEY | RELKEY | action);
149 action = key->map[state];
155 keyboard.last_active[keycode] = action;
157 if (keyboard.last_active[keycode] != action) {
158 action = NOP;
160 switch (action) {
171 action |
416 uint32_t action = USB_KEYBOARD_KEY_NOKEY; local
[all...]
/barrelfish-master/lib/libc/gen/
H A Dfmtmsg.c36 #define DFLT_MSGVERB "label:severity:text:action:tag"
50 const char *action, const char *tag)
69 output = printfmt(msgverb, class, label, sev, text, action,
82 action, tag);
145 } else if (strcmp(comp, "action") == 0 && act != MM_NULLACT) {
204 const char *validlist = "label\0severity\0text\0action\0tag\0";
49 fmtmsg(long class, const char *label, int sev, const char *text, const char *action, const char *tag) argument
/barrelfish-master/include/lwip2/lwip/
H A Dnetif.h202 const ip4_addr_t *group, enum netif_mac_filter_action action);
207 const ip6_addr_t *group, enum netif_mac_filter_action action);
436 #define netif_mld_mac_filter(netif, addr, action) do { if((netif) && (netif)->mld_mac_filter) { (netif)->mld_mac_filter((netif), (addr), (action)); }}while(0)
461 #define netif_set_ip6_autoconfig_enabled(netif, action) do { if(netif) { (netif)->ip6_autoconfig_enabled = (action); }}while(0)
/barrelfish-master/tools/molly/
H A Dm5script.py33 parser.add_option("--kernel", action="store", type="string")
34 parser.add_option("--num_cpus", action="store", type="int")
/barrelfish-master/usr/eclipseclp/ecrc_solvers/grace/
H A Doptions.pl175 action(W, N, V1, NewV),
182 action(W, N, V1, NewV),
400 % Options that require some other action than just setting a variable
401 action(control, var_selection, S, S) :-
408 action(control, value_selection, S, S) :-
415 action(control, value_selections, Name, Value) :-
431 action(control, var_selections, Name, Value) :-
447 action(Matrix, label, Bool, Bool) :-
454 action(_, _, V, V).
/barrelfish-master/include/lwip/lwip/
H A Dnetif.h166 u8_t action);
/barrelfish-master/usr/skb/octopus/
H A Dpredicates.c498 long int action = 0; local
499 res = ec_get_long(ec_arg(2), &action);
557 drs->mode = (retract) ? (action | OCT_REMOVED) : action;

Completed in 373 milliseconds

123