Searched refs:sbuf (Results 51 - 75 of 151) sorted by relevance

1234567

/macosx-10.10.1/xnu-2782.1.97/security/
H A Dmac_sysv_shm.c67 #include <sys/sbuf.h>
H A Dmac_posix_shm.c66 #include <sys/sbuf.h>
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dsftp-common.c196 char sbuf[FMT_SCALED_STRSIZE]; local
222 fmt_scaled((long long)st->st_size, sbuf);
225 sbuf, tbuf, name);
/macosx-10.10.1/remote_cmds-47/wall.tproj/
H A Dwall.c241 struct stat sbuf; local
353 if (fstat(fd, &sbuf))
355 mbufsize = sbuf.st_size;
/macosx-10.10.1/text_cmds-88/cat/
H A Dcat.c244 struct stat sbuf; local
248 if (fstat(wfd, &sbuf))
250 bsize = MAX(sbuf.st_blksize, 1024);
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dmappedio.c54 struct stat sbuf; local
62 if ( fstat(fd, &sbuf) == -1 ||
63 (fin->base = mmap(0, fin->size = sbuf.st_size, PROT_READ, MAP_SHARED,
/macosx-10.10.1/misc_cmds-33/calendar/
H A Dio.c335 struct stat sbuf; local
342 if (stat(calendarNoMail, &sbuf) == 0)
416 struct stat sbuf; local
424 if (fstat(fileno(fp), &sbuf) || !sbuf.st_size)
/macosx-10.10.1/pcre-7/pcre/
H A Dpcretest.c1073 uschar sbuf[8]; local
1088 if (fread(sbuf, 1, 8, f) != 8) goto FAIL_READ;
1091 (sbuf[0] << 24) | (sbuf[1] << 16) | (sbuf[2] << 8) | sbuf[3];
1093 (sbuf[4] << 24) | (sbuf[5] << 16) | (sbuf[6] << 8) | sbuf[
1686 uschar sbuf[8]; local
[all...]
/macosx-10.10.1/screen-22/screen/
H A Dteln.c252 char *p = buf, *sbuf; local
257 sbuf = p;
265 WriteString(fore, sbuf, p - sbuf);
266 sbuf = p;
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dcond.c116 char *sbuf[3]; local
118 sbuf[0] = ecgetstr(state, EC_NODUP, NULL);
119 sbuf[1] = ecgetstr(state, EC_NODUP, NULL);
120 sbuf[2] = NULL;
122 strs = arrdup(sbuf);
/macosx-10.10.1/Libinfo-459/util.subproj/
H A Drcmd.c424 struct stat sbuf; local
480 if (lstat(pbuf, &sbuf) < 0)
482 else if (!S_ISREG(sbuf.st_mode))
484 else if (fstat(fileno(hostf), &sbuf) < 0)
486 else if (sbuf.st_uid && sbuf.st_uid != pwd->pw_uid)
488 else if (sbuf.st_mode & (S_IWGRP|S_IWOTH))
/macosx-10.10.1/uucp-11/uucp/
H A Dtstuu.c183 struct sbuf
185 struct sbuf *qnext;
203 static long cread P((int o, struct sbuf **));
204 static boolean fsend P((int o, int oslave, struct sbuf **));
231 struct sbuf *qbuf1, *qbuf2;
1372 struct sbuf **pqbuf;
1391 *pqbuf = (struct sbuf *) malloc (sizeof (struct sbuf));
1474 struct sbuf **pqbuf;
1485 struct sbuf *qfre
182 struct sbuf struct
[all...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Dglob.c477 struct stat sbuf; local
491 if (Lstat(pathbuf->s, &sbuf))
496 (S_ISDIR(sbuf.st_mode)
498 || (S_ISLNK(sbuf.st_mode) &&
499 (Stat(pathbuf->s, &sbuf) == 0) &&
500 S_ISDIR(sbuf.st_mode))
/macosx-10.10.1/CPANInternal-159.1/File-ExtAttr-1.09/
H A Dextattr_solaris.c55 struct stat sbuf; local
57 if (fstat(attrfd, &sbuf) == 0)
58 sz = sbuf.st_size;
/macosx-10.10.1/apache-793/httpd/support/
H A Dhtpasswd.c144 apr_finfo_t sbuf; local
147 check = apr_stat(&sbuf, fname, APR_FINFO_TYPE, pool);
148 return ((check || sbuf.filetype != APR_REG) ? 0 : 1);
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dmisc.c255 code_timespec (struct timespec t, char sbuf[TIMESPEC_STRSIZE_BOUND])
268 np = umaxtostr (negative ? - (uintmax_t) s : (uintmax_t) s, sbuf + 1);
271 code_ns_fraction (ns, sbuf + UINTMAX_STRSIZE_BOUND);
253 code_timespec(struct timespec t, char sbuf[TIMESPEC_STRSIZE_BOUND]) argument
/macosx-10.10.1/apache-793/httpd/modules/ssl/
H A Dssl_engine_pphrase.c54 apr_finfo_t sbuf; local
57 if ((stat = apr_stat(&sbuf, fname, APR_FINFO_MIN, pool)) != APR_SUCCESS)
60 if (sbuf.filetype != APR_REG)
67 *mtime = sbuf.mtime;
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dasyn-thread.c563 char sbuf[12]; local
607 snprintf(sbuf, sizeof(sbuf), "%d", port);
619 error = Curl_getaddrinfo_ex(hostname, sbuf, &hints, &res);
/macosx-10.10.1/emacs-93/emacs/src/
H A Dunexaix.c525 struct stat sbuf;
531 if (stat (name, &sbuf) == -1)
535 sbuf.st_mode |= 0111 & ~um;
536 if (chmod (name, sbuf.st_mode) == -1)
521 struct stat sbuf; local
H A Dunexalpha.c524 struct stat sbuf;
527 if (stat (name, &sbuf) < 0)
529 sbuf.st_mode |= 0111 & ~um;
530 if (chmod (name, sbuf.st_mode) < 0)
521 struct stat sbuf; local
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/uwin/
H A Drcmd.c353 struct stat sbuf; local
367 (void)fstat(fileno(hostf), &sbuf); local
368 if (sbuf.st_uid && sbuf.st_uid != pwd->pw_uid) {
/macosx-10.10.1/vim-55/src/
H A Dos_vms.c213 char *sbuf = NULL; local
228 else if ((sbuf = getenv((char *)lognam)))
230 lengte = strlen(sbuf) + 1;
233 strcpy((char *)cp, sbuf);
/macosx-10.10.1/OpenSSL098-52/src/ssl/
H A Dssltest.c1117 MS_STATIC char sbuf[1024*8]; local
1121 memset(sbuf, 0, sizeof(sbuf));
1132 if (sw_num > (long)sizeof sbuf)
1133 i = sizeof sbuf;
1136 r = BIO_write(s_ssl_bio, sbuf, i);
1163 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
1351 MS_STATIC char cbuf[1024*8],sbuf[1024*8]; local
1366 memset(sbuf,
[all...]
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dssltest.c1117 MS_STATIC char sbuf[1024*8]; local
1121 memset(sbuf, 0, sizeof(sbuf));
1132 if (sw_num > (long)sizeof sbuf)
1133 i = sizeof sbuf;
1136 r = BIO_write(s_ssl_bio, sbuf, i);
1163 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
1351 MS_STATIC char cbuf[1024*8],sbuf[1024*8]; local
1366 memset(sbuf,
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dnfrule.cpp127 UnicodeString sbuf; local
177 sbuf.append(description, 0, brack1);
179 sbuf.append(description, brack2 + 1, description.length() - brack2 - 1);
181 rule2->ruleText.setTo(sbuf);
188 sbuf.setTo(description, 0, brack1);
189 sbuf.append(description, brack1 + 1, brack2 - brack1 - 1);
191 sbuf.append(description, brack2 + 1, description.length() - brack2 - 1);
193 rule1->ruleText.setTo(sbuf);

Completed in 405 milliseconds

1234567