Searched refs:act (Results 26 - 50 of 56) sorted by relevance

123

/asus-wl-520gu-7.0.1.45/src/linux/linux/include/linux/
H A Dhil_mlc.h93 enum hilse_act act; /* How to process this node */ member in struct:hilse_node
H A Dhp_sdc.h63 int actidx; /* Start of act. Acts are atomic WRT I/O to SDC */
64 int idx; /* Index within the act */
70 } act; member in struct:__anon6742
77 * act to perform the dealloc.
/asus-wl-520gu-7.0.1.45/src/router/LPRng/src/common/
H A Dutilities.c278 struct sigaction act, oact; local
280 act.sa_handler = func;
281 (void) sigemptyset (&act.sa_mask);
282 act.sa_flags = 0;
284 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
286 if (sigaction (signo, &act, &oact) < 0) {
308 struct sigaction act, oact; local
310 act.sa_handler = func;
311 (void) sigemptyset (&act.sa_mask);
312 act
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/block/
H A Dswim3.c233 static void act(struct floppy_state *fs);
350 act(fs);
455 static void act(struct floppy_state *fs) function
546 act(fs);
566 act(fs);
634 act(fs);
644 act(fs);
658 act(fs);
665 act(fs);
695 act(f
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc64/kernel/
H A Dsignal.c178 long sys_sigaction(int sig, const struct old_sigaction *act, argument
189 if (act) {
191 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
192 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
193 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
195 __get_user(new_ka.sa.sa_flags, &act->sa_flags);
196 __get_user(mask, &act->sa_mask);
200 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
H A Dsignal32.c133 asmlinkage long sys32_sigaction(int sig, struct old_sigaction32 *act, struct old_sigaction32 *oact) argument
145 if (act)
149 ret = get_user((long)new_ka.sa.sa_handler, &act->sa_handler);
150 ret |= __get_user((long)new_ka.sa.sa_restorer, &act->sa_restorer);
151 ret |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
152 ret |= __get_user(mask, &act->sa_mask);
160 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
707 asmlinkage long sys32_rt_sigaction(int sig, const struct sigaction32 *act, struct sigaction32 *oact, size_t sigsetsize) argument
718 if (act) {
719 ret = get_user((long)new_ka.sa.sa_handler, &act
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/kernel/
H A Dsignal.c122 sys_sigaction(int sig, const struct old_sigaction *act, argument
128 if (act) {
130 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
131 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
132 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
134 __get_user(new_ka.sa.sa_flags, &act->sa_flags);
135 __get_user(mask, &act->sa_mask);
139 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/kernel/
H A Dsignal.c122 sys_sigaction(int sig, const struct old_sigaction *act, argument
128 if (act) {
130 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
131 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
132 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
134 __get_user(new_ka.sa.sa_flags, &act->sa_flags);
135 __get_user(mask, &act->sa_mask);
139 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/kernel/
H A Dirixsig.c382 irix_sigaction(int sig, const struct sigaction *act, argument
395 if (act) {
397 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
398 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
399 __get_user(new_ka.sa.sa_flags, &act->sa_flags))
402 __copy_from_user(&mask, &act->sa_mask, sizeof(sigset_t));
412 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc/kernel/
H A Dsys_sunos.c1143 sunos_sigaction(int sig, const struct old_sigaction *act, argument
1149 if(act) {
1152 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
1153 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
1154 __get_user(new_ka.sa.sa_flags, &act->sa_flags))
1156 __get_user(mask, &act->sa_mask);
1163 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
/asus-wl-520gu-7.0.1.45/src/linux/linux/kernel/
H A Dsignal.c1071 do_sigaction(int sig, const struct k_sigaction *act, struct k_sigaction *oact) argument
1076 (act && (sig == SIGKILL || sig == SIGSTOP)))
1086 if (act) {
1087 *k = *act;
1248 sys_rt_sigaction(int sig, const struct sigaction *act, struct sigaction *oact, argument
1257 if (act) {
1258 if (copy_from_user(&new_sa.sa, act, sizeof(new_sa.sa)))
1262 ret = do_sigaction(sig, act ? &new_sa : NULL, oact ? &old_sa : NULL);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc64/kernel/
H A Dsys_sparc.c554 sys_rt_sigaction(int sig, const struct sigaction *act, struct sigaction *oact, argument
563 if (act) {
565 if (copy_from_user(&new_ka.sa, act, sizeof(*act)))
569 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
H A Dsys_sunos32.c1296 asmlinkage int sunos_sigaction (int sig, u32 act, u32 oact) argument
1301 if (act) {
1304 if (get_user((long)new_ka.sa.sa_handler, &((struct old_sigaction32 *)A(act))->sa_handler) ||
1305 __get_user(new_ka.sa.sa_flags, &((struct old_sigaction32 *)A(act))->sa_flags))
1307 __get_user(mask, &((struct old_sigaction32 *)A(act))->sa_mask);
1314 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
/asus-wl-520gu-7.0.1.45/src/router/rp-pppoe/
H A Dpppoe-server.c608 struct sigaction act; local
771 act.sa_handler = childHandler;
772 sigemptyset(&act.sa_mask);
773 act.sa_flags = SA_NOCLDSTOP | SA_RESTART;
774 if (sigaction(SIGCHLD, &act, NULL) < 0) {
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/s390/block/
H A Ddasd_eckd.c1286 ccw1_t *act = req->cpaddr; local
1291 act, ((int *) act)[0], ((int *) act)[1]);
1293 ((int *) act->cda)[0], ((int *) act->cda)[1],
1294 ((int *) act->cda)[2], ((int *) act->cda)[3]);
1296 act++;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/char/
H A Dmachzwd.c477 static void __init zf_show_action(int act) argument
481 printk(KERN_INFO PFX ": Watchdog using action = %s\n", str[act]);
/asus-wl-520gu-7.0.1.45/src/router/rcamdmips/
H A Drcamd.c141 struct sigaction act; local
149 act.sa_handler = handle_sig_pipe;
150 sigemptyset(&act.sa_mask);
151 act.sa_flags = SA_SIGINFO;
152 sigaction(SIGPIPE, &act, NULL);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/hil/
H A Dhp_sdc_rtc.c107 t.act.semaphore = &tsem;
177 t.act.semaphore = &i8042tregs;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/ia32/
H A Dsys_ia32.c310 sys32_rt_sigaction(int sig, struct sigaction32 *act, argument
320 if (act) {
321 if (verify_area(VERIFY_READ, act, sizeof(*act)) ||
322 __get_user((long)new_ka.sa.sa_handler, &act->sa_handler) ||
323 __get_user(new_ka.sa.sa_flags, &act->sa_flags) ||
324 __get_user((long)new_ka.sa.sa_restorer, &act->sa_restorer)||
325 __copy_from_user(&set32, &act->sa_mask, sizeof(sigset32_t)))
340 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
369 sys32_sigaction (int sig, struct old_sigaction32 *act, struc argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/linux/
H A Dhp_sdc.h63 int actidx; /* Start of act. Acts are atomic WRT I/O to SDC */
64 int idx; /* Index within the act */
70 } act; member in struct:__anon11158
77 * act to perform the dealloc.
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppoecd/
H A Dmain.c1074 struct sigaction act, oldact; local
1076 act.sa_handler = SIG_IGN;
1077 act.sa_flags = 0;
1079 sigaction(sig, &act, &oldact);
/asus-wl-520gu-7.0.1.45/src/router/wlconf/
H A Dwlconf.c85 int wlconf_radio(char *act);
86 int wlconf_auth(char *act);
1986 wlconf_radio(char *act) argument
1992 if (!strcmp(act, "on"))
2005 wlconf_auth(char *act) argument
2011 val = atoi(act);
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppd/
H A Dmain.c1210 struct sigaction act, oldact; local
1212 act.sa_handler = SIG_IGN;
1213 act.sa_flags = 0;
1215 sigaction(sig, &act, &oldact);
/asus-wl-520gu-7.0.1.45/src/router/pppd/pppd/
H A Dmain.c1337 struct sigaction act, oldact; local
1339 act.sa_handler = SIG_IGN;
1340 act.sa_flags = 0;
1342 sigaction(sig, &act, &oldact);
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppd/
H A Dmain.c1337 struct sigaction act, oldact; local
1339 act.sa_handler = SIG_IGN;
1340 act.sa_flags = 0;
1341 sigaction(sig, &act, &oldact);

Completed in 349 milliseconds

123