Searched refs:sv (Results 26 - 50 of 97) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/aecho/
H A Daecho.c117 struct sigaction sv; local
190 sv.sa_handler = aep_send;
191 sigemptyset( &sv.sa_mask );
192 sigaddset( &sv.sa_mask, SIGINT );
193 sv.sa_flags = SA_RESTART;
194 if ( sigaction( SIGALRM, &sv, (struct sigaction *)0 ) < 0 ) {
199 sv.sa_handler = done;
200 sigemptyset( &sv.sa_mask );
201 sigaddset( &sv.sa_mask, SIGALRM );
202 sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/bin/ad/
H A Dad_mv.c93 struct sigaction sv; local
95 sv.sa_handler = sig_handler;
96 sv.sa_flags = SA_RESTART;
97 sigemptyset(&sv.sa_mask);
98 if (sigaction(SIGTERM, &sv, NULL) < 0)
101 if (sigaction(SIGINT, &sv, NULL) < 0)
104 memset(&sv, 0, sizeof(struct sigaction));
105 sv.sa_handler = SIG_IGN;
106 sigemptyset(&sv.sa_mask);
108 if (sigaction(SIGABRT, &sv, NUL
[all...]
H A Dad_ls.c88 struct sigaction sv; local
90 sv.sa_handler = sig_handler;
91 sv.sa_flags = SA_RESTART;
92 sigemptyset(&sv.sa_mask);
93 if (sigaction(SIGTERM, &sv, NULL) < 0)
96 if (sigaction(SIGINT, &sv, NULL) < 0)
99 memset(&sv, 0, sizeof(struct sigaction));
100 sv.sa_handler = SIG_IGN;
101 sigemptyset(&sv.sa_mask);
103 if (sigaction(SIGABRT, &sv, NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/bin/ad/
H A Dad_mv.c93 struct sigaction sv; local
95 sv.sa_handler = sig_handler;
96 sv.sa_flags = SA_RESTART;
97 sigemptyset(&sv.sa_mask);
98 if (sigaction(SIGTERM, &sv, NULL) < 0)
101 if (sigaction(SIGINT, &sv, NULL) < 0)
104 memset(&sv, 0, sizeof(struct sigaction));
105 sv.sa_handler = SIG_IGN;
106 sigemptyset(&sv.sa_mask);
108 if (sigaction(SIGABRT, &sv, NUL
[all...]
H A Dad_ls.c88 struct sigaction sv; local
90 sv.sa_handler = sig_handler;
91 sv.sa_flags = SA_RESTART;
92 sigemptyset(&sv.sa_mask);
93 if (sigaction(SIGTERM, &sv, NULL) < 0)
96 if (sigaction(SIGINT, &sv, NULL) < 0)
99 memset(&sv, 0, sizeof(struct sigaction));
100 sv.sa_handler = SIG_IGN;
101 sigemptyset(&sv.sa_mask);
103 if (sigaction(SIGABRT, &sv, NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/mtd/ubi/
H A Ddebug.c137 * @sv: the object to dump
139 void ubi_dbg_dump_sv(const struct ubi_scan_volume *sv) argument
142 dbg_msg("vol_id %d", sv->vol_id);
143 dbg_msg("highest_lnum %d", sv->highest_lnum);
144 dbg_msg("leb_count %d", sv->leb_count);
145 dbg_msg("compat %d", sv->compat);
146 dbg_msg("vol_type %d", sv->vol_type);
147 dbg_msg("used_ebs %d", sv->used_ebs);
148 dbg_msg("last_data_size %d", sv->last_data_size);
149 dbg_msg("data_pad %d", sv
[all...]
H A Ddebug.h60 void ubi_dbg_dump_sv(const struct ubi_scan_volume *sv);
74 #define ubi_dbg_dump_sv(sv) ({})
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/cnid_dbd/
H A Dmain.c262 struct sigaction sv; local
264 sv.sa_handler = sig_exit;
265 sv.sa_flags = 0;
266 sigemptyset(&sv.sa_mask);
267 sigaddset(&sv.sa_mask, SIGINT);
268 sigaddset(&sv.sa_mask, SIGTERM);
269 if (sigaction(SIGINT, &sv, NULL) < 0 || sigaction(SIGTERM, &sv, NULL) < 0) {
273 sv.sa_handler = SIG_IGN;
274 sigemptyset(&sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/cnid_dbd/
H A Dmain.c262 struct sigaction sv; local
264 sv.sa_handler = sig_exit;
265 sv.sa_flags = 0;
266 sigemptyset(&sv.sa_mask);
267 sigaddset(&sv.sa_mask, SIGINT);
268 sigaddset(&sv.sa_mask, SIGTERM);
269 if (sigaction(SIGINT, &sv, NULL) < 0 || sigaction(SIGTERM, &sv, NULL) < 0) {
273 sv.sa_handler = SIG_IGN;
274 sigemptyset(&sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/util/
H A Dserver_child.c387 struct sigaction sv; local
392 memset(&sv, 0, sizeof(sv));
393 sv.sa_handler = SIG_DFL;
394 sigemptyset( &sv.sa_mask );
396 sigaction(SIGALRM, &sv, NULL );
397 sigaction(SIGHUP, &sv, NULL );
398 sigaction(SIGTERM, &sv, NULL );
399 sigaction(SIGUSR1, &sv, NULL );
400 sigaction(SIGCHLD, &sv, NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dserver_child.c383 struct sigaction sv; local
388 memset(&sv, 0, sizeof(sv));
389 sv.sa_handler = SIG_DFL;
390 sigemptyset( &sv.sa_mask );
392 sigaction(SIGALRM, &sv, NULL );
393 sigaction(SIGHUP, &sv, NULL );
394 sigaction(SIGTERM, &sv, NULL );
395 sigaction(SIGUSR1, &sv, NULL );
396 sigaction(SIGCHLD, &sv, NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Dafp_asp.c152 struct sigaction sv; local
168 memset(&sv, 0, sizeof(sv));
169 sv.sa_handler = afp_asp_die;
170 sigemptyset( &sv.sa_mask );
171 sigaddset(&sv.sa_mask, SIGHUP);
172 sigaddset(&sv.sa_mask, SIGTERM);
173 sv.sa_flags = SA_RESTART;
174 if ( sigaction( SIGALRM, &sv, NULL ) < 0 ) {
180 sv
[all...]
H A Dafp_dsi.c210 struct sigaction sv; local
231 memset(&sv, 0, sizeof(sv));
232 sv.sa_handler = afp_dsi_die;
233 sigemptyset( &sv.sa_mask );
234 sigaddset(&sv.sa_mask, SIGHUP);
235 sigaddset(&sv.sa_mask, SIGTERM);
236 sv.sa_flags = SA_RESTART;
237 if ( sigaction( SIGALRM, &sv, NULL ) < 0 ) {
243 sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dafp_asp.c153 struct sigaction sv; local
169 memset(&sv, 0, sizeof(sv));
170 sv.sa_handler = afp_asp_die;
171 sigemptyset( &sv.sa_mask );
172 sigaddset(&sv.sa_mask, SIGHUP);
173 sigaddset(&sv.sa_mask, SIGTERM);
174 sv.sa_flags = SA_RESTART;
175 if ( sigaction( SIGALRM, &sv, NULL ) < 0 ) {
181 sv
[all...]
H A Dafp_dsi.c226 struct sigaction sv; local
247 memset(&sv, 0, sizeof(sv));
248 sv.sa_handler = afp_dsi_die;
249 sigemptyset( &sv.sa_mask );
250 sigaddset(&sv.sa_mask, SIGHUP);
251 sigaddset(&sv.sa_mask, SIGTERM);
252 sv.sa_flags = SA_RESTART;
253 if ( sigaction( SIGALRM, &sv, NULL ) < 0 ) {
259 sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-style.c446 num_val = &a_style->num_props[NUM_PROP_PADDING_TOP].sv;
450 num_val = &a_style->num_props[NUM_PROP_PADDING_RIGHT].sv;
454 num_val = &a_style->num_props[NUM_PROP_PADDING_BOTTOM].sv;
458 num_val = &a_style->num_props[NUM_PROP_PADDING_LEFT].sv;
513 num_val = &a_style->num_props[NUM_PROP_BORDER_TOP].sv;
517 num_val = &a_style->num_props[NUM_PROP_BORDER_RIGHT].sv;
521 num_val = &a_style->num_props[NUM_PROP_BORDER_BOTTOM].sv;
525 num_val = &a_style->num_props[NUM_PROP_BORDER_LEFT].sv;
758 num_val = &a_style->num_props[NUM_PROP_MARGIN_TOP].sv;
762 num_val = &a_style->num_props[NUM_PROP_MARGIN_RIGHT].sv;
[all...]
H A Dcr-style.h121 CRNum sv ; member in struct:_CRNumPropVal
141 CRRgb sv ; member in struct:_CRRgbPropVal
216 CRFontSize sv ; member in struct:_CRFontSizeVal
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-style.c446 num_val = &a_style->num_props[NUM_PROP_PADDING_TOP].sv;
450 num_val = &a_style->num_props[NUM_PROP_PADDING_RIGHT].sv;
454 num_val = &a_style->num_props[NUM_PROP_PADDING_BOTTOM].sv;
458 num_val = &a_style->num_props[NUM_PROP_PADDING_LEFT].sv;
513 num_val = &a_style->num_props[NUM_PROP_BORDER_TOP].sv;
517 num_val = &a_style->num_props[NUM_PROP_BORDER_RIGHT].sv;
521 num_val = &a_style->num_props[NUM_PROP_BORDER_BOTTOM].sv;
525 num_val = &a_style->num_props[NUM_PROP_BORDER_LEFT].sv;
758 num_val = &a_style->num_props[NUM_PROP_MARGIN_TOP].sv;
762 num_val = &a_style->num_props[NUM_PROP_MARGIN_RIGHT].sv;
[all...]
H A Dcr-style.h121 CRNum sv ; member in struct:_CRNumPropVal
141 CRRgb sv ; member in struct:_CRRgbPropVal
216 CRFontSize sv ; member in struct:_CRFontSizeVal
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wan/
H A Dsealevel.c207 struct slvl_device *sv = dev->priv; local
208 sppp_attach(&sv->pppdev);
235 struct slvl_device *sv; local
243 sv = d->priv;
244 sv->if_ptr = &sv->pppdev;
245 sv->pppdev.dev = d;
249 return sv;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/
H A DBerkeleyDB.xs63 # define GetFILEptr(sv) PerlIO_findFILE(IoIFP(sv_2io(sv)))
65 # define GetFILEptr(sv) IoIFP(sv_2io(sv))
401 #define getInnerObject(x) ((SV*)SvRV(sv))
404 #define my_sv_setpvn(sv, d, s) (s ? sv_setpvn(sv, d, s) : sv_setpv(sv, "") )
406 #define GetValue_iv(h,k) (((sv = readHash(h, k)) && sv !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dmain.c171 struct sigaction sv; local
321 memset(&sv, 0, sizeof(sv));
322 sv.sa_handler = die;
323 sigemptyset( &sv.sa_mask );
324 sv.sa_flags = SA_RESTART;
325 if ( sigaction( SIGTERM, &sv, NULL ) < 0 ) {
330 sv.sa_handler = reap;
331 sigemptyset( &sv.sa_mask );
332 sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dmain.c171 struct sigaction sv; local
321 memset(&sv, 0, sizeof(sv));
322 sv.sa_handler = die;
323 sigemptyset( &sv.sa_mask );
324 sv.sa_flags = SA_RESTART;
325 if ( sigaction( SIGTERM, &sv, NULL ) < 0 ) {
330 sv.sa_handler = reap;
331 sigemptyset( &sv.sa_mask );
332 sv
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/config/
H A Dexpr.h69 #define S_VAL(sv) ((sv).value)
70 #define S_TRI(sv) ((sv).tri)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djdarith.c111 register int sv, data; local
151 sv = *st;
152 qe = jaritab[sv & 0x7F]; /* => Qe_Value */
165 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */
168 *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */
169 sv ^= 0x80; /* Exchange LPS/MPS */
174 *st = (sv & 0x80) ^ nl; /* Estimate_after_LPS */
175 sv ^= 0x80; /* Exchange LPS/MPS */
177 *st = (sv & 0x80) ^ nm; /* Estimate_after_MPS */
181 return sv >>
[all...]

Completed in 378 milliseconds

1234