Searched refs:actions (Results 1 - 24 of 24) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dfatal-signal.c1 /* Emergency actions in case of a fatal signal.
114 /* Type of an entry in the actions array.
123 /* The registered cleanup actions. */
125 static actions_entry_t * volatile actions = static_actions; variable
155 action = actions[n].action;
200 /* Extend the actions array. Note that we cannot use xrealloc(),
203 actions_entry_t *old_actions = actions;
215 actions = new_actions;
217 /* Now we can free the old actions array. */
224 actions[actions_coun
[all...]
H A Dpipe.c250 posix_spawn_file_actions_t actions;
283 if ((err = posix_spawn_file_actions_init (&actions)) != 0
286 && (err = posix_spawn_file_actions_adddup2 (&actions,
290 && (err = posix_spawn_file_actions_adddup2 (&actions,
294 && (err = posix_spawn_file_actions_addclose (&actions, ofd[0]))
297 && (err = posix_spawn_file_actions_addclose (&actions, ifd[1]))
300 && (err = posix_spawn_file_actions_addclose (&actions, ofd[1]))
303 && (err = posix_spawn_file_actions_addclose (&actions, ifd[0]))
306 && (err = posix_spawn_file_actions_addopen (&actions,
313 && (err = posix_spawn_file_actions_addopen (&actions,
[all...]
H A Dexecute.c200 posix_spawn_file_actions_t actions;
218 if ((err = posix_spawn_file_actions_init (&actions)) != 0
221 && (err = posix_spawn_file_actions_addopen (&actions,
227 && (err = posix_spawn_file_actions_addopen (&actions,
233 && (err = posix_spawn_file_actions_addopen (&actions,
247 || (err = posix_spawnp (&child, prog_path, &actions,
253 posix_spawn_file_actions_destroy (&actions);
263 posix_spawn_file_actions_destroy (&actions);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/hotplug2/
H A Drules.c331 switch (rule->actions[i].type) {
347 last_rv = make_dev_from_event(event, rule->actions[i].parameter[0], strtoul(rule->actions[i].parameter[1], NULL, 0));
350 last_rv = chmod(rule->actions[i].parameter[0], strtoul(rule->actions[i].parameter[1], NULL, 0));
354 last_rv = chown_chgrp(rule->actions[i].type, rule->actions[i].parameter[0], rule->actions[i].parameter[1]);
357 last_rv = make_symlink(event, rule->actions[i].parameter[0], rule->actions[
509 struct key_rec_t actions[] = { local
[all...]
H A Drules.h66 struct action_t *actions; member in struct:rule_t
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/dlm/
H A Ddlmunlock.c64 int *actions);
69 int *actions);
108 int actions = 0; local
158 status = dlm_get_cancel_actions(dlm, res, lock, lksb, &actions);
160 status = dlm_get_unlock_actions(dlm, res, lock, lksb, &actions);
189 * let the ast handle all of these actions */
191 actions &= ~(DLM_UNLOCK_REMOVE_LOCK|
197 /* must clear the actions because this unlock
200 mlog(0, "%s:%.*s: clearing actions, %s\n",
206 actions
525 dlm_get_cancel_actions(struct dlm_ctxt *dlm, struct dlm_lock_resource *res, struct dlm_lock *lock, struct dlm_lockstatus *lksb, int *actions) argument
557 dlm_get_unlock_actions(struct dlm_ctxt *dlm, struct dlm_lock_resource *res, struct dlm_lock *lock, struct dlm_lockstatus *lksb, int *actions) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dehci.h145 unsigned long actions; member in struct:ehci_hcd
201 clear_bit (action, &ehci->actions);
207 if (!test_and_set_bit (action, &ehci->actions)) {
H A Dehci-hcd.c489 if (test_bit (TIMER_ASYNC_OFF, &ehci->actions))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/findutils/
H A Dfind.c98 static action ***actions; variable
144 /* "action group" is a set of actions ANDed together.
146 * We simply evaluate each group until we find one in which all actions
167 if (!ap) /* all actions in group were successful */
393 i = exec_actions(actions, fileName, statbuf);
533 * Tests and actions are grouped by operators
576 /* --- Tests and actions --- */
877 actions = parse_params(&argv[firstopt]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/init/
H A Dinit.c59 static const struct init_action_type actions[] = { variable in typeref:struct:init_action_type
706 * but do overwrite existing actions */
748 * actions(i.e., runs INIT_SCRIPT and then starts a pair
760 const struct init_action_type *a = actions;
833 for (a = actions; a->name != 0; a++) {
961 * actions(i.e., runs INIT_SCRIPT and then starts a pair
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/init/
H A Dinitramfs.c329 static __initdata int (*actions[])(void) = { variable
345 while (!actions[state]())
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dtaskstats.c65 enum actions { enum
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/Documentation/cdrom/
H A Dcdrom-standard.tex364 Device-specific actions should be taken such as spinning down the device.
365 However, strategic actions such as ejection of the tray, or unlocking
678 initialization of the transfer. The call may even induce some actions
682 no actions whatsoever.
731 set), no actions are taken and a value of 0 will be returned.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/Test/
H A DBuilder.pm220 will print the appropriate headers and take the appropriate actions.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/dnsmasq-2.15/contrib/dnslist/
H A Ddnslist.pl450 distribute the Program or its derivative works. These actions are
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dconfigure1673 # left behind by Apple's compiler. We do this before executing the actions.
9193 \`$as_me' instantiates files and other configuration actions
9195 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/
H A Dconfigure1745 # left behind by Apple's compiler. We do this before executing the actions.
11832 \`$as_me' instantiates files and other configuration actions
11834 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgpg-error-1.10/
H A Dconfigure1932 # left behind by Apple's compiler. We do this before executing the actions.
14188 \`$as_me' instantiates files and other configuration actions
14190 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libexif-0.6.19/
H A Dconfigure1734 # left behind by Apple's compiler. We do this before executing the actions.
13488 \`$as_me' instantiates files and other configuration actions
13490 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dip-cref.tex127 The set of possible actions depends on the object type.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/
H A Dconfigure1866 # left behind by Apple's compiler. We do this before executing the actions.
16273 \`$as_me' instantiates files and other configuration actions
16275 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/
H A Dconfigure1780 # left behind by Apple's compiler. We do this before executing the actions.
2134 # left behind by Apple's compiler. We do this before executing the actions.
2218 # left behind by Apple's compiler. We do this before executing the actions.
21112 \`$as_me' instantiates files and other configuration actions
21114 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/sqlite-3.6.22/
H A Dconfigure1701 # left behind by Apple's compiler. We do this before executing the actions.
2092 # left behind by Apple's compiler. We do this before executing the actions.
2176 # left behind by Apple's compiler. We do this before executing the actions.
20302 \`$as_me' instantiates files and other configuration actions
20304 and actions are specified as TAGs, all are instantiated by default.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/
H A Dconfigure2125 # left behind by Apple's compiler. We do this before executing the actions.
37860 \`$as_me' instantiates files and other configuration actions
37862 and actions are specified as TAGs, all are instantiated by default.
[all...]

Completed in 478 milliseconds