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

<<11121314151617181920>>

/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dposix_shm.c782 struct stat *sb = (struct stat *)0; /* warning avoidance ; protected by isstat64 */ local
811 sb = (struct stat *)ub;
812 bzero(sb, sizeof(struct stat));
813 sb->st_mode = pinfo->pshm_mode;
814 sb->st_uid = pinfo->pshm_uid;
815 sb->st_gid = pinfo->pshm_gid;
816 sb->st_size = pinfo->pshm_length;
1261 struct vinfo_stat *sb; local
1269 sb = &info->pshm_stat;
1271 bzero(sb, sizeo
[all...]
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dhist.c2250 struct stat sb; local
2256 if (stat(unmeta(fn), &sb) < 0 ||
2257 sb.st_size == 0)
2260 if ((lasthist.fsiz == sb.st_size && lasthist.mtim == sb.st_mtime)
2263 lasthist.fsiz = sb.st_size;
2264 lasthist.mtim = sb.st_mtime;
2486 struct stat sb; local
2487 int old_exists = stat(unmeta(fn), &sb) == 0;
2494 && sb
2558 struct stat sb; local
2648 struct stat sb; local
[all...]
/macosx-10.9.5/bless-98/
H A DhandleInfo.c105 struct statfs sb; local
263 struct statfs sb; local
266 if(0 != blsustatfs(mnts[vols].f_mntonname, &sb)) {
270 if(strncmp(sb.f_mntfromname, currentDev, strlen(currentDev)+1) == 0) {
295 ret = blsustatfs(actargs[kmount].argument, &sb);
324 ret = BLCreateBooterInformationDictionary(context, sb.f_mntfromname + 5, &dict);
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.9.5/bless-98/libbless/EFI/
H A DBLSetEFIBootDevice.c218 struct statfs sb; local
219 if(0 != blsustatfs(path, &sb)) {
238 strlcpy(newBSDName, sb.f_mntfromname + 5, sizeof newBSDName);
280 if (0 == strcmp(newBSDName, sb.f_mntfromname + 5)) {
296 if(0 != strncmp(sb.f_mntonname, path, MAXPATHLEN)) {
298 sb.f_mntonname);
/macosx-10.9.5/cron-39/crontab/
H A Dcrontab.c357 struct stat sb; local
363 if (fstat(fd, &sb) == 0) {
364 if (sb.st_size == 0) {
367 ptr = mmap(NULL, sb.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, 0);
369 result = CC_MD5(ptr, sb.st_size, output);
370 (void)munmap(ptr, sb.st_size);
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Dupdate-game-score.c401 const struct score_entry *sb = (const struct score_entry *) b; local
402 return (sb->score > sa->score) - (sb->score < sa->score);
411 const struct score_entry *sb = (const struct score_entry *) b; local
412 return (sa->score > sb->score) - (sa->score < sb->score);
/macosx-10.9.5/lsof-52/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.9.5/vim-53/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.9.5/zsh-60/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.9.5/CPANInternal-140/PathTools/
H A DCwd.xs130 struct stat sb;
132 if (lstat(p, &sb) == 0) {
133 if (S_ISLNK(sb.st_mode)) {
145 if (S_ISDIR(sb.st_mode)) {
/macosx-10.9.5/Libc-997.90.3/gen/
H A Dnftw.c171 struct stat sb; local
172 int rc = stat(cur->fts_path, &sb);
/macosx-10.9.5/cxxfilt-11/cxxfilt/include/coff/
H A Dsym.h251 #define IssFSb(sb) (0x80000000 | ((unsigned long)(sb)))
/macosx-10.9.5/msdosfs-198/mount_msdos.tproj/
H A Dmount_msdos.c127 struct stat sb; local
129 if (realpath(path, resolved) != NULL && stat(resolved, &sb) == 0) {
130 if (!S_ISDIR(sb.st_mode))
227 struct stat sb; local
295 if (stat(mntpath, &sb) == -1)
299 args.uid = sb.st_uid;
301 args.gid = sb.st_gid;
303 args.mask = sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
/macosx-10.9.5/syslog-217.1.4/syslogd.tproj/
H A Dafter_install.sh34 install -m 0644 -o root -g wheel "$SRCROOT"/syslogd.tproj/syslogd.sb "$DSTROOT"/usr/share/sandbox
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dvgrindefs.vim24 syn match vgrindefsField ":sb="
/macosx-10.9.5/Libc-997.90.3/darwin/
H A D_dirhelper.c263 struct stat sb; local
298 if(stat(userdir, &sb) < 0) {
338 if(stat(userdir, &sb) < 0) {
378 if(stat(path, &sb) < 0) {
/macosx-10.9.5/Libc-997.90.3/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.9.5/Libc-997.90.3/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.9.5/Security-55471.14.18/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.9.5/adv_cmds-153/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.9.5/bind9-45.100/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.9.5/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.9.5/lsof-52/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.9.5/xnu-2422.115.4/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)) {

Completed in 317 milliseconds

<<11121314151617181920>>