Searched refs:sb (Results 251 - 275 of 731) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/lsof-53/lsof/
H A Darg.c139 struct stat sb; local
271 sb = *sbp;
273 if (statsafely(fnm, &sb) != 0) {
286 (void) HASSPECDEVD(fnm, &sb);
290 sfp->i = (INODETYPE)sb.st_ino;
291 sfp->mode = sb.st_mode & S_IFMT;
299 sfp->dev = expdev(sb.st_dev);
300 sfp->rdev = expdev(sb.st_rdev);
302 sfp->dev = sb.st_dev;
303 sfp->rdev = sb
991 struct stat sb; local
[all...]
/macosx-10.10.1/vim-55/src/
H A Dgui_riscos.c2150 scroll_to(line, sb)
2151 int sb; /* Scrollbar number */
2170 code[3] = sb;
2210 scrollbar_T *sb; local
2220 sb = ro_find_sbar(block[0]);
2221 if (!sb)
2224 wp = sb-> wp;
2237 gui_drag_scrollbar(sb, block[5] / gui.char_width, FALSE);
2252 gui_drag_scrollbar(sb, offset - (block[6] / gui.char_height), FALSE);
2363 scrollbar_T *sb; local
3014 gui_mch_destroy_scrollbar(scrollbar_T *sb) argument
3022 gui_mch_set_scrollbar_colors(scrollbar_T *sb) argument
[all...]
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dcomplete.c828 do_comp_vars(int test, int na, char *sa, int nb, char *sb, int mod) argument
870 if (t && sb) {
873 singsub(&sb);
874 pp = patcompile(sb, PAT_STATIC, NULL);
1007 char *sa = NULL, *sb = NULL; local
1031 sb = argv[1];
1038 sb = argv[2];
1041 if (((test == CVT_PRENUM || test == CVT_SUFNUM) ? !!sb :
1042 (sb && argv[na]))) {
1049 nb = (sb
[all...]
/macosx-10.10.1/kext_tools-384.1.4/
H A Dbootcaches.c775 struct stat sb; local
797 if ((errnum = stat(uuiddir, &sb))) {
803 if (stat(cachedir, &sb) == 0) {
821 if ((-1 == stat(cachedir, &sb))) {
854 copy_dict_from_fd(int fd, struct stat *sb) argument
862 if (sb->st_size > UINT_MAX || sb->st_size > LONG_MAX) goto finish;
863 if (!(buf = malloc((size_t)sb->st_size))) goto finish;
864 if (read(fd, buf, (size_t)sb->st_size) != sb
902 struct stat sb; local
1161 struct stat sb; local
1302 struct stat sb; local
1496 struct stat sb; local
2028 struct stat sb; local
2284 struct stat sb; local
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dnftw.c171 struct stat sb; local
172 int rc = stat(cur->fts_path, &sb);
/macosx-10.10.1/bless-103/
H A DhandleFolder.c69 struct statfs sb; local
260 if(0 != statfs(actargs[kmount].argument, &sb)) {
452 (sb.f_fssubtype & ~1)
454 (sb.f_reserved1 & ~1)
476 if(geteuid() != 0 && geteuid() != sb.f_owner) {
558 struct statfs sb; local
560 ret = blsustatfs(actargs[kmount].argument, &sb);
567 ret = setboot(context, sb.f_mntfromname, bootXdata, labeldata);
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/coff/
H A Dsym.h251 #define IssFSb(sb) (0x80000000 | ((unsigned long)(sb)))
/macosx-10.10.1/msdosfs-209.1.1/mount_msdos.tproj/
H A Dmount_msdos.c122 struct stat sb; local
124 if (realpath(path, resolved) != NULL && stat(resolved, &sb) == 0) {
125 if (!S_ISDIR(sb.st_mode))
222 struct stat sb; local
290 if (stat(mntpath, &sb) == -1)
294 args.uid = sb.st_uid;
296 args.gid = sb.st_gid;
298 args.mask = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
/macosx-10.10.1/syslog-267/syslogd.tproj/
H A Dsyslogd.c260 struct stat sb; local
266 memset(&sb, 0, sizeof(struct stat));
267 if (stat(_PATH_PIDFILE, &sb) == 0)
269 if (S_ISREG(sb.st_mode)) *first = 0;
678 struct stat sb;
679 memset(&sb, 0, sizeof(sb));
680 if (stat(NOQUOTA_FILE_PATH, &sb) == 0)
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dvgrindefs.vim24 syn match vgrindefsField ":sb="
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_control.c492 struct sockbuf *sb = &so->so_rcv; local
494 if (sb->sb_hiwat > sb->sb_idealsize) {
502 diff = sb->sb_hiwat - sb->sb_idealsize;
506 trim = sb->sb_hiwat - sb->sb_cc;
511 sbreserve(sb, (sb->sb_hiwat - trim));
515 __func__, sb
631 struct sockbuf *sb = &so->so_rcv; local
[all...]
/macosx-10.10.1/Libc-1044.1.2/db/btree/FreeBSD/
H A Dbt_open.c92 struct stat sb; local
213 if (_fstat(t->bt_fd, &sb))
215 if (sb.st_size) {
257 b.psize = sb.st_blksize;
/macosx-10.10.1/Libc-1044.1.2/db/mpool/FreeBSD/
H A Dmpool.c65 struct stat sb; local
75 if (_fstat(fd, &sb))
77 if (!S_ISREG(sb.st_mode)) {
89 mp->npages = sb.st_size / pagesize;
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/Tool/
H A Dpkcs12_util.c59 struct stat sb; local
62 if (stat(filename, &sb) < 0)
64 if (sb.st_size > INT32_MAX)
66 len = (uint32_t)sb.st_size;
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DiCloudTrace.c122 struct stat sb; local
129 int stat_result = stat(path, &sb);
134 if (S_ISDIR(sb.st_mode))
144 *pFileSize = (size_t)sb.st_size;
/macosx-10.10.1/Security-57031.1.35/codesign_wrapper/
H A Dcodesign.c87 CS_SuperBlob *sb = (CS_SuperBlob*)lc_code_signature; local
88 require(ntohl(sb->magic) == CSMAGIC_EMBEDDED_SIGNATURE, out);
90 for (count = 0; count < ntohl(sb->count); count++) {
91 //uint32_t type = ntohl(sb->index[count].type);
92 uint32_t offset = ntohl(sb->index[count].offset);
/macosx-10.10.1/adv_cmds-158/finger/
H A Dlprint.c299 struct stat sb; local
308 if ((fd = open(tbuf, O_RDONLY)) < 0 || fstat(fd, &sb) ||
309 sb.st_size == 0)
313 if (sb.st_size <= LINE_LEN - strlen(header) - 5) {
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dio_test.cpp101 systembuf sb(fd, bufsize);
102 std::istream is(&sb);
117 systembuf sb(fd, bufsize);
118 std::ostream os(&sb);
/macosx-10.10.1/groff-38/groff/src/libs/libbib/
H A Dlinear.cpp306 struct stat sb; local
307 if (fstat(fd, &sb) < 0)
309 else if (!S_ISREG(sb.st_mode))
317 int size = int(sb.st_size);
/macosx-10.10.1/lsof-53/lsof/tests/
H A DLTszoff.c316 struct stat sb; /* stat(2) buffer */ local
349 if (stat(Path, &sb)) {
358 if ((cem = ConvStatDev(&sb.st_dev, &stdc)))
360 (void) snprintf(ibuf, sizeof(ibuf) - 1, "%u", (unsigned int)sb.st_ino);
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/libproc/
H A Dproc_listpidspath.c133 check_file(fdOpenInfoRef info, struct vinfo_stat *sb) argument
135 if (sb->vst_dev == 0) {
140 if (sb->vst_dev != info->match_stat.st_dev) {
146 (sb->vst_ino != info->match_stat.st_ino)) {
/macosx-10.10.1/BerkeleyDB-21/db/os/
H A Dos_rw.c246 struct stat sb; local
249 DB_ASSERT(env, fstat(fhp->fd, &sb) != -1 &&
251 cur_off <= sb.st_size);
/macosx-10.10.1/IOKitUser-1050.1.21/
H A DIOCFSerializeTest.c137 struct stat sb; local
143 if (stat(argv[1], &sb)) exit(1);
144 size = (size_t)sb.st_size;
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dglob.c600 struct stat sb; local
611 if (g_lstat(pathbuf, &sb, pglob, loc))
622 pathend[-1] != SEP) && (S_ISDIR(sb.st_mode)
623 || (S_ISLNK(sb.st_mode) &&
624 (g_stat(pathbuf, &sb, pglob, loc) == 0) &&
625 S_ISDIR(sb.st_mode)))) {
920 g_lstat(Char *fn, struct stat *sb, glob_t *pglob, locale_t loc) argument
929 return((*pglob->gl_lstat)(buf, sb));
930 return(lstat(buf, sb));
934 g_stat(Char *fn, struct stat *sb, glob_ argument
[all...]
/macosx-10.10.1/PowerManagement-494.1.2/pmconfigd/
H A DTTYKeepAwake.c312 struct stat sb;
322 result = stat(tty->ttydev, &sb);
327 current_idle_secs = curtime - sb.st_atime + 1;

Completed in 312 milliseconds

<<11121314151617181920>>