Searched refs:sb (Results 301 - 325 of 739) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/tcl-102/tk/tk/library/ttk/
H A Dcombobox.tcl276 $scrollbar $popdown.sb \
280 -yscrollcommand [list $popdown.sb set] \
290 grid $popdown.sb -row 0 -column 1 -padx {0 1} -pady 1 -sticky ns
351 grid $popdown.sb
354 grid remove $popdown.sb
/macosx-10.9.5/launchd-842.92.1/support/
H A Dlaunchctl.c1263 struct stat sb; local
1265 if (stat(path, &sb) == -1) {
1274 if (sb.st_mode & (S_IWOTH|S_IWGRP)) {
1279 if (sb.st_uid != 0 && sb.st_uid != getuid()) {
1284 if (!(S_ISREG(sb.st_mode) || S_ISDIR(sb.st_mode))) {
1289 if ((!S_ISDIR(sb.st_mode)) && (fnmatch("*.plist", path, FNM_CASEFOLD) == FNM_NOMATCH)) {
1301 struct stat sb; local
1309 if (stat(what, &sb)
4115 struct stat sb; local
4171 struct stat sb; local
4182 uint32_t sb = 0; local
4235 struct stat sb; local
4468 struct stat sb; local
4533 struct stat sb; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/dst/
H A Dt_dst.c554 struct stat sb; local
558 rval = stat(path, &sb);
564 buf = (char *) malloc((sb.st_size + 1) * sizeof(unsigned char));
577 len = sb.st_size;
595 len = sb.st_size;
635 struct stat sb; local
649 rval = stat(datapath, &sb);
656 data = (unsigned char *) malloc(sb.st_size * sizeof(char));
672 len = sb.st_size;
706 isc_buffer_init(&databuf, data, sb
[all...]
/macosx-10.9.5/lsof-52/lsof/lib/
H A Ddvch.c779 struct stat sb, devsb; local
787 if ((ov = open_dcache(1, 0, &sb)) != 0) {
791 if (open_dcache(1, 1, &sb) != 0)
808 if (sb.st_mtime <= devsb.st_mtime || sb.st_ctime <= devsb.st_ctime)
1108 if (stat(Devtp[i].name, &sb) != 0
1111 || expdev(sb.st_rdev) != Devtp[i].rdev
1113 || sb.st_rdev != Devtp[i].rdev
1116 || sb.st_ino != Devtp[i].inode) {
1276 struct stat sb; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dsasl.c828 Sockbuf *sb,
836 if ( !ber_sockbuf_ctrl( sb, LBER_SB_OPT_HAS_IO,
840 ber_sockbuf_add_io( sb, &ber_sockbuf_io_debug,
843 ber_sockbuf_add_io( sb, &ldap_pvt_sockbuf_io_sasl_generic,
850 void ldap_pvt_sasl_generic_remove( Sockbuf *sb )
852 ber_sockbuf_remove_io( sb, &ldap_pvt_sockbuf_io_sasl_generic,
855 ber_sockbuf_remove_io( sb, &ber_sockbuf_io_debug,
827 ldap_pvt_sasl_generic_install( Sockbuf *sb, struct sb_sasl_generic_install *install_arg ) argument
/macosx-10.9.5/lsof-52/lsof/dialects/darwin/kmem/
H A Ddnode.c357 struct stat sb; local
832 if (!statsafely(vn, &sb)) {
848 Lf->sz = sb.st_size;
858 Lf->inode = (INODETYPE)sb.st_ino;
864 Lf->nlink = sb.st_nlink;
879 dev = sb.st_dev;
887 rdev = sb.st_rdev;
/macosx-10.9.5/tcsh-65/tcsh/
H A Dglob.c95 static int Stat (const char *, struct stat *sb);
212 Lstat(const char *fn, struct stat *sb) argument
216 st = lstat(fn, sb);
218 if (*fn != 0 && strend(fn)[-1] == '/' && !S_ISDIR(sb->st_mode))
228 Stat(const char *fn, struct stat *sb) argument
232 st = stat(fn, sb);
234 if (*fn != 0 && strend(fn)[-1] == '/' && !S_ISDIR(sb->st_mode))
/macosx-10.9.5/shell_cmds-175/find/
H A Dfunction.c913 struct statfs sb; local
915 static char fstype[sizeof(sb.f_fstypename)];
942 if (statfs(entry->fts_accpath, &sb))
956 val_flags = sb.f_flags;
957 strlcpy(fstype, sb.f_fstypename, sizeof(fstype));
1079 struct stat sb; local
1085 if (stat(fn, &sb))
1087 new->i_data = sb.st_ino;
1198 struct stat sb; local
1210 if (stat(fn_or_tspec, &sb))
[all...]
/macosx-10.9.5/syslog-217.1.4/aslmanager.tproj/
H A Daslmanager.c508 struct stat sb; local
520 memset(&sb, 0, sizeof(struct stat));
524 if ((str != NULL) && (stat(str, &sb) == 0) && S_ISREG(sb.st_mode))
526 size += sb.st_size;
546 struct stat sb; local
563 memset(&sb, 0, sizeof(struct stat));
564 if (stat(dst->rotate_dir, &sb) == 0)
567 if (!S_ISDIR(sb.st_mode))
626 memset(&sb,
[all...]
/macosx-10.9.5/copyfile-103.92.1/
H A Dcopyfile.c98 struct stat sb; member in struct:_copyfile_state
449 struct stat sb; local
456 if (fstatx_np(fd, &sb, fsec) != 0) {
887 if (fstatx_np(s->src_fd, &s->sb, s->fsec) != 0)
890 fstat(s->src_fd, &s->sb);
900 switch (s->sb.st_mode & S_IFMT)
1501 (s->src, &s->sb, s->fsec))
1508 switch (s->sb.st_mode & S_IFMT)
1512 if ((size_t)s->sb.st_size > SIZE_T_MAX) {
1586 size_t sz = (size_t)s->sb
1931 struct stat sb; local
3172 struct stat sb; local
3371 struct stat sb; local
[all...]
/macosx-10.9.5/vim-53/src/
H A Dgui_w48.c1226 scrollbar_T *sb,
1229 ShowScrollBar(sb->id, SB_CTL, flag);
1238 scrollbar_T *sb,
1244 SetWindowPos(sb->id, NULL, x, y, w, h,
1250 scrollbar_T *sb,
1253 sb->id = CreateWindow(
2842 gui_mch_destroy_scrollbar(scrollbar_T *sb) argument
2844 DestroyWindow(sb->id);
3645 scrollbar_T *sb, *sb_info; local
3658 sb
1225 gui_mch_enable_scrollbar( scrollbar_T *sb, int flag) argument
1237 gui_mch_set_scrollbar_pos( scrollbar_T *sb, int x, int y, int w, int h) argument
1249 gui_mch_create_scrollbar( scrollbar_T *sb, int orient) argument
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dsudo.c1021 struct stat sb; local
1026 switch (sudo_secure_file(sudoers, SUDOERS_UID, SUDOERS_GID, &sb)) {
1033 if ((sb.st_mode & S_IRGRP) == 0)
1043 if (sb.st_size != 0 && fgetc(fp) == EOF) {
1063 sudoers, (unsigned int) sb.st_uid, (unsigned int) SUDOERS_UID);
1070 sudoers, (unsigned int) sb.st_gid, (unsigned int) SUDOERS_GID);
1086 struct stat sb; local
1089 if (strchr(path, '/') != NULL && stat(path, &sb) == 0) {
1091 if (sb.st_uid != ROOT_UID || !ISSET(sb
[all...]
/macosx-10.9.5/launchd-842.92.1/src/
H A Druntime.c149 #define config_check(s, sb) (stat(LAUNCHD_CONFIG_PREFIX s, &sb) == 0)
1378 struct stat sb; local
1391 if (stat("/AppleInternal", &sb) == 0 && stat("/var/db/disableAppleInternal", &sb) == -1) {
1395 if (config_check(".launchd_use_gmalloc", sb)) {
1399 if (config_check(".launchd_log_shutdown", sb)) {
1403 if (config_check(".launchd_log_debug", sb)) {
1407 if (config_check(".launchd_log_perf", sb)) {
1411 if (config_check("/etc/rc.cdrom", sb)) {
[all...]
/macosx-10.9.5/syslog-217.1.4/aslcommon/
H A Dasl_common.c439 struct stat sb; local
455 memset(&sb, 0, sizeof(struct stat));
456 status = stat(tmp, &sb);
459 if (!S_ISDIR(sb.st_mode)) return -1;
588 struct stat sb; local
590 memset(&sb, 0, sizeof(struct stat));
592 if (stat(dst->path, &sb) < 0)
598 if (dst->stamp == 0) dst->stamp = sb.st_birthtimespec.tv_sec;
599 if (dst->stamp == 0) dst->stamp = sb.st_mtimespec.tv_sec;
600 dst->size = sb
818 struct stat sb; local
2044 struct stat sb; local
2265 struct stat sb; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-ldap/
H A Dbind.c674 slap_bindconf *sb; local
720 sb = &li->li_idassert.si_bc;
722 sb = &li->li_acl;
725 sb = &li->li_idassert.si_bc;
728 sb = &li->li_tls;
731 if ( sb->sb_tls_do_init ) {
732 bindconf_tls_set( sb, ld );
733 } else if ( sb->sb_tls_ctx ) {
734 ldap_set_option( ld, LDAP_OPT_X_TLS_CTX, sb->sb_tls_ctx );
738 if ( ( sb
1412 slap_bindconf *sb; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dasn1_print.c295 struct stat sb; local
302 if (fstat (fd, &sb) < 0)
304 len = sb.st_size;
/macosx-10.9.5/Heimdal-323.92.1/lib/hx509/
H A Drevoke.c324 struct stat sb; local
332 ret = stat(ocsp->path, &sb);
368 ocsp->last_modfied = sb.st_mtime;
560 struct stat sb; local
570 ret = stat(path, &sb);
574 *t = sb.st_mtime;
688 struct stat sb; local
693 ret = stat(ocsp->path, &sb);
694 if (ret == 0 && ocsp->last_modfied != sb.st_mtime) {
765 struct stat sb; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c/
H A Dcheck.c120 init_sb(const atf_fs_path_t *path, atf_process_stream_t *sb) argument
125 err = atf_process_stream_init_inherit(sb);
127 err = atf_process_stream_init_redirect_path(sb, path);
/macosx-10.9.5/bless-98/
H A Dsetboot.c324 struct statfs sb; local
325 if(0 != blsustatfs(path, &sb)) {
355 sb.f_mntfromname + 5,
/macosx-10.9.5/lukemftp-13.92.1/tnftp/src/
H A Dcomplete.c235 struct stat sb; local
242 if (stat(path, &sb) >= 0) {
245 if (S_ISDIR(sb.st_mode))
/macosx-10.9.5/mail_cmds-29/mail/
H A Dfio.c281 struct stat sb; local
283 if (stat(name, &sb) < 0)
285 if (!S_ISREG(sb.st_mode)) {
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Dditto.c173 struct stat sb; local
175 if (stat(path, &sb) < 0)
177 if ((sb.st_mode & S_IFMT) != S_IFCHR) {
/macosx-10.9.5/remote_cmds-41.90.1/rpc_yppasswdd.tproj/
H A Dpasswd.c113 struct stat sb; local
116 if (stat(_PATH_MASTERPASSWD_LOCK, &sb) == 0) {
117 if (sb.st_size == 0) {
/macosx-10.9.5/system_cmds-597.90.1/chpass.tproj/
H A Dedit.c298 struct stat sb; local
311 fstat(fileno(fp), &sb) == -1) {
318 if (sb.st_size == 0) {
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/chpass.tproj/
H A Dedit.c298 struct stat sb; local
311 fstat(fileno(fp), &sb) == -1) {
318 if (sb.st_size == 0) {

Completed in 493 milliseconds

<<11121314151617181920>>