Searched refs:sa (Results 201 - 225 of 603) sorted by relevance

1234567891011>>

/macosx-10.10/network_cmds-457/rtsol.tproj/
H A Dif.c112 static void get_rtaddrs __P((int addrs, struct sockaddr *sa,
295 struct sockaddr *sa, *rti_info[RTAX_MAX]; local
311 sa = (struct sockaddr *)(ifm + 1);
312 get_rtaddrs(ifm->ifm_addrs, sa, rti_info);
313 if ((sa = rti_info[RTAX_IFP]) != NULL) {
314 if (sa->sa_family == AF_LINK) {
315 sdl = (struct sockaddr_dl *)sa;
489 get_rtaddrs(int addrs, struct sockaddr *sa, struct sockaddr **rti_info) argument
495 rti_info[i] = sa;
496 NEXT_SA(sa);
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Dlisten.c248 apr_sockaddr_t *sa; local
253 sa = (*walk)->bind_addr;
255 if (sa) {
259 oldport = sa->port;
264 ((!addr && !sa->hostname) ||
265 ((addr && sa->hostname) && !strcmp(sa->hostname, addr)))) {
285 if ((status = apr_sockaddr_info_get(&sa, addr, APR_UNSPEC, port, 0,
300 while (sa) {
307 new->bind_addr = sa;
[all...]
H A Dmpm_unix.c1002 struct sigaction sa; local
1004 sigemptyset(&sa.sa_mask);
1007 sa.sa_flags = SA_ONESHOT;
1009 sa.sa_flags = SA_RESETHAND;
1011 sa.sa_flags = 0;
1014 sa.sa_handler = sig_coredump;
1015 if (sigaction(SIGSEGV, &sa, NULL) < 0)
1018 if (sigaction(SIGBUS, &sa, NULL) < 0)
1022 if (sigaction(SIGABORT, &sa, NULL) < 0)
1026 if (sigaction(SIGABRT, &sa, NUL
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/win/
H A Dnmakehlp.c204 SECURITY_ATTRIBUTES sa;
219 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
220 sa.nLength = sizeof(SECURITY_ATTRIBUTES);
221 sa.lpSecurityDescriptor = NULL;
222 sa.bInheritHandle = FALSE;
228 CreatePipe(&Out.pipe, &h, &sa, 0);
241 CreatePipe(&Err.pipe, &h, &sa, 0);
339 SECURITY_ATTRIBUTES sa;
354 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
355 sa
202 SECURITY_ATTRIBUTES sa; local
336 SECURITY_ATTRIBUTES sa; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/win/
H A Dnmakehlp.c204 SECURITY_ATTRIBUTES sa;
219 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
220 sa.nLength = sizeof(SECURITY_ATTRIBUTES);
221 sa.lpSecurityDescriptor = NULL;
222 sa.bInheritHandle = FALSE;
228 CreatePipe(&Out.pipe, &h, &sa, 0);
241 CreatePipe(&Err.pipe, &h, &sa, 0);
339 SECURITY_ATTRIBUTES sa;
354 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
355 sa
202 SECURITY_ATTRIBUTES sa; local
336 SECURITY_ATTRIBUTES sa; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/thread/thread/win/vc/
H A Dnmakehlp.c204 SECURITY_ATTRIBUTES sa;
219 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
220 sa.nLength = sizeof(SECURITY_ATTRIBUTES);
221 sa.lpSecurityDescriptor = NULL;
222 sa.bInheritHandle = FALSE;
228 CreatePipe(&Out.pipe, &h, &sa, 0);
241 CreatePipe(&Err.pipe, &h, &sa, 0);
339 SECURITY_ATTRIBUTES sa;
354 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
355 sa
202 SECURITY_ATTRIBUTES sa; local
336 SECURITY_ATTRIBUTES sa; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tls/tls/win/
H A Dnmakehlp.c204 SECURITY_ATTRIBUTES sa;
219 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
220 sa.nLength = sizeof(SECURITY_ATTRIBUTES);
221 sa.lpSecurityDescriptor = NULL;
222 sa.bInheritHandle = FALSE;
228 CreatePipe(&Out.pipe, &h, &sa, 0);
241 CreatePipe(&Err.pipe, &h, &sa, 0);
339 SECURITY_ATTRIBUTES sa;
354 ZeroMemory(&sa, sizeof(SECURITY_ATTRIBUTES));
355 sa
202 SECURITY_ATTRIBUTES sa; local
336 SECURITY_ATTRIBUTES sa; local
[all...]
/macosx-10.10/ruby-106/ruby/ext/socket/
H A Dsocket.c1214 VALUE sa, af = Qnil, host = Qnil, port = Qnil, flags, tmp; local
1223 sa = flags = Qnil;
1224 rb_scan_args(argc, argv, "11", &sa, &flags);
1230 tmp = rb_check_sockaddr_string_type(sa);
1232 sa = tmp;
1233 if (sizeof(ss) < (size_t)RSTRING_LEN(sa)) {
1236 memcpy(&ss, RSTRING_PTR(sa), RSTRING_LEN(sa));
1237 if ((size_t)RSTRING_LEN(sa) != SS_LEN(&ss)) {
1243 tmp = rb_check_array_type(sa);
[all...]
/macosx-10.10/Libinfo-459/lookup.subproj/
H A Dsi_getaddrinfo.c187 si_nameinfo(si_mod_t *si, const struct sockaddr *sa, int flags, const char *interface, uint32_t *err) argument
205 if ((si == NULL) || (sa == NULL))
213 lookup_sa = sa;
215 if (sa->sa_family == AF_INET)
217 struct sockaddr_in *s4 = (struct sockaddr_in *)sa;
222 else if (sa->sa_family == AF_INET6)
224 struct sockaddr_in6 *s6 = (struct sockaddr_in6 *)sa;
311 if (sa->sa_family == AF_INET)
319 else if (sa->sa_family == AF_INET6)
436 struct sockaddr_in *sa; local
461 struct sockaddr_in6 *sa; local
487 struct sockaddr_in6 *sa; local
[all...]
H A Dnetdb_async.h58 int32_t getnameinfo_async_start(mach_port_t *p, const struct sockaddr *sa, size_t salen, int flags, getnameinfo_async_callback callback, void *context);
59 int32_t getnameinfo_async_send(mach_port_t *p, const struct sockaddr *sa, size_t salen, int flags);
/macosx-10.10/apr-32/apr/apr/file_io/win32/
H A Dpipe.c80 SECURITY_ATTRIBUTES sa;
86 sa.nLength = sizeof(sa);
90 sa.bInheritHandle = FALSE;
94 sa.bInheritHandle = TRUE;
96 sa.lpSecurityDescriptor = NULL;
148 &sa);
163 &sa, /* Security attributes */
170 if (!CreatePipe(&(*in)->filehand, &(*out)->filehand, &sa, 65536)) {
/macosx-10.10/postfix-255/postfix/src/smtpstone/
H A Dqmqp-source.c147 static struct sockaddr *sa; variable in typeref:struct:sockaddr
327 if ((fd = socket(sa->sa_family, SOCK_STREAM, 0)) < 0)
338 if (sane_connect(fd, sa, sa_length) < 0 && errno != EINPROGRESS)
360 if (sa->sa_family == AF_INET
362 || sa->sa_family == AF_INET6
570 sa = (struct sockaddr *) & sun;
581 sa = (struct sockaddr *) & ss;
585 memcpy((char *) sa, res->ai_addr, res->ai_addrlen);
588 sa->sa_len = sa_length;
/macosx-10.10/Heimdal-398.1.2/kdc/
H A Dhpropd.c122 struct sockaddr *sa = (struct sockaddr *)&ss; local
131 if (getpeername (sock, sa, &sin_len) < 0) {
145 if(getpeername(sock, sa, &sin_len) < 0)
148 if (inet_ntop(sa->sa_family,
149 socket_get_address (sa),
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Drkpty.c381 struct sigaction sa; local
383 sa.sa_handler = caught_signal;
384 sa.sa_flags = 0;
385 sigemptyset (&sa.sa_mask);
387 sigaction(SIGALRM, &sa, NULL);
/macosx-10.10/Libc-1044.1.2/gen/
H A Dnlist.c137 off_t sa; /* symbol address */ local
287 sa = stp->symoff + arch_offset;
293 sa = N_SYMOFF(buf) + arch_offset;
294 ss = sa + buf.a_syms + arch_offset;
298 lseek(fd, sa, SEEK_SET);
/macosx-10.10/sudo-73/src/auth/
H A Dsudo_auth.c168 sigaction_t sa, osa; local
171 sigemptyset(&sa.sa_mask);
172 sa.sa_flags = SA_RESTART;
173 sa.sa_handler = SIG_DFL;
174 (void) sigaction(SIGTSTP, &sa, &osa);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducnv_cnv.h208 const USetAdder *sa,
286 const USetAdder *sa,
292 const USetAdder *sa,
H A Ducnv_ct.c579 const USetAdder *sa,
586 ucnv_MBCSGetUnicodeSetForUnicode(myConverterData->myConverterArray[i], sa, which, pErrorCode);
588 sa->add(sa->set, 0x0000);
589 sa->add(sa->set, 0x0009);
590 sa->add(sa->set, 0x000A);
591 sa->addRange(sa
578 _CompoundText_GetUnicodeSet(const UConverter *cnv, const USetAdder *sa, UConverterUnicodeSet which, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Windows/
H A DProgram.inc112 SECURITY_ATTRIBUTES sa;
113 sa.nLength = sizeof(sa);
114 sa.lpSecurityDescriptor = 0;
115 sa.bInheritHandle = TRUE;
118 &sa, fd == 0 ? OPEN_EXISTING : CREATE_ALWAYS,
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Duuid.c119 struct sockaddr *sa;
146 sa = &ifr->ifr_addr;
148 if ( sa->sa_len > sizeof( ifr->ifr_addr ) ) {
149 i += sizeof( ifr->ifr_name ) + sa->sa_len;
154 if ( sa->sa_family != AF_LINK ) {
158 sdl = (struct sockaddr_dl *)sa;
/macosx-10.10/bind9-45.101/bind9/lib/export/samples/
H A Dsample.c178 isc_sockaddr_t sa; local
197 INSIST(res->ai_addrlen <= sizeof(sa.type));
198 memcpy(&sa.type, res->ai_addr, res->ai_addrlen);
200 sa.length = res->ai_addrlen;
201 ISC_LINK_INIT(&sa, link);
203 ISC_LIST_APPEND(servers, &sa, link);
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dplaylist.tcl36 snack::sound sa
107 sa config -file $files([.frame.list get $i])
208 set junk [sa sample [expr $pos - 1000]]
209 set junk [sa sample [expr $pos - 100]]
210 set junk [sa sample [expr $pos]]
213 set spec [sa dBPower -start $pos -fftlen 128 -windowlength 128]
H A Dsnamp.tcl36 snack::sound sa
107 sa config -file $files([.frame.list get $i])
203 set junk [sa sample [expr $pos - 1000]]
204 set junk [sa sample [expr $pos - 100]]
205 set junk [sa sample [expr $pos]]
208 set spec [sa dBPower -start $pos -fftlen 128 -windowlength 128]
/macosx-10.10/apache-793/httpd/server/mpm/prefork/
H A Dprefork.c392 struct sigaction sa; local
400 sigemptyset(&sa.sa_mask);
401 sa.sa_flags = 0;
403 sa.sa_handler = sig_term;
404 if (sigaction(SIGTERM, &sa, NULL) < 0)
407 if (sigaction(AP_SIG_GRACEFUL_STOP, &sa, NULL) < 0)
412 if (sigaction(SIGINT, &sa, NULL) < 0)
416 sa.sa_handler = SIG_DFL;
417 if (sigaction(SIGXCPU, &sa, NULL) < 0)
424 sa
[all...]
/macosx-10.10/crontabs-52/files/daily/
H A D310.accounting45 sa -s $daily_accounting_flags || rc=3

Completed in 216 milliseconds

1234567891011>>