Searched refs:altflags (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10/smb-759.0/lib/smb/
H A Dpreference.c46 int32_t altflags; local
104 if (rc_getbool(rcfile, sname, "validate_neg_off", &altflags) == 0) {
105 if (altflags)
106 prefs->altflags |= SMBFS_MNT_VALIDATE_NEG_OFF;
108 prefs->altflags &= ~SMBFS_MNT_VALIDATE_NEG_OFF;
200 if (rc_getbool(rcfile, sname, "compound_on", &altflags) == 0) {
201 if (altflags)
202 prefs->altflags |= SMBFS_MNT_COMPOUND_ON;
204 prefs->altflags &= ~SMBFS_MNT_COMPOUND_ON;
208 if (rc_getbool(rcfile, sname, "notify_off", &altflags)
[all...]
H A Dpreference.h47 int32_t altflags; member in struct:smb_prefs
H A Dctx.c873 if ((ctx->mechDict) && (ctx->prefs.altflags & SMBFS_MNT_KERBEROS_OFF)) {
2599 mdata.altflags = ctx->prefs.altflags; /* Contains flags that were read from preference */
2606 mdata.altflags |= SMBFS_MNT_SOFT;
2608 mdata.altflags |= SMBFS_MNT_NOTIFY_OFF;
2611 mdata.altflags |= SMBFS_MNT_STREAMS_ON;
2613 mdata.altflags &= ~SMBFS_MNT_STREAMS_ON;
2616 mdata.altflags |= SMBFS_MNT_TIME_MACHINE;
2897 mdata.altflags |= SMBFS_MNT_DFS_SHARE;
2899 smb_log_info("%s: Volume name = %s mntflags = 0x%x altflags
[all...]
/macosx-10.10/smb-759.0/mount_smbfs/
H A Dmount_smbfs.c113 int altflags = SMBFS_MNT_STREAMS_ON; local
142 mntoptparse_t mp = getmntopts(optarg, mopts, &mntflags, &altflags);
187 if ((altflags & SMBFS_MNT_STREAMS_ON) != SMBFS_MNT_STREAMS_ON) {
191 if ((altflags & SMBFS_MNT_NOTIFY_OFF) == SMBFS_MNT_NOTIFY_OFF) {
195 if ((altflags & SMBFS_MNT_SOFT) == SMBFS_MNT_SOFT) {
199 if ((altflags & SMBFS_MNT_TIME_MACHINE) == SMBFS_MNT_TIME_MACHINE) {
/macosx-10.10/NFS-82/mount_nfs/
H A Dmount_nfs.c982 int num, altflags = 0, dummyflags; local
987 altflags = 0;
988 mop = getmntopts(opts, mopts, &options.mntflags, &altflags);
992 if (altflags & ALTF_ATTRCACHE_VAL) {
1053 if (altflags & ALTF_DEADTIMEOUT) {
1065 if (altflags & ALTF_DSIZE) {
1080 if (altflags & ALTF_MAXGROUPS) {
1089 if (altflags & ALTF_MOUNTPORT) {
1098 if (altflags & ALTF_PORT) {
1107 if (altflags
[all...]
/macosx-10.10/autofs-246/mount_url/
H A Dmount_url.c64 int flags, altflags; local
71 flags = altflags = 0;
84 mp = getmntopts(optarg, mopts_std, &flags, &altflags);
183 (altflags & ALT_SOFT) ? kCFBooleanTrue : kCFBooleanFalse);
/macosx-10.10/autofs-246/automount/
H A Dautomount.c115 int flags, altflags; local
404 if (!parse_mntopts(dir->dir_opts, &flags, &altflags)) {
471 au.mntflags = altflags;
568 if (altflags & AUTOFS_MNT_HIDEFROMFINDER)
589 ai.mntflags = altflags;
810 parse_mntopts(const char *opts, int *flags, int *altflags) argument
815 * Parse the mount options and fill in "flags" and "altflags".
817 *flags = *altflags = 0;
819 mp = getmntopts(opts, mopts_autofs, flags, altflags);
/macosx-10.10/autofs-246/automountd/
H A Dautod_mount.c412 int flags, altflags; local
464 flags = altflags = 0;
466 mp = getmntopts(opts, mopts_soft, &flags, &altflags);
473 if (!altflags) {
475 * The only bit in altflags is the bit for "soft",
929 int altflags; local
953 flags = altflags = 0;
955 mp = getmntopts(mntopts, mopts_nfs, &flags, &altflags);
957 if (altflags & NFS_MNT_PORT) {
1155 int flags, altflags; local
[all...]
H A Dautod_nfs.c574 int flags, altflags; local
625 flags = altflags = 0;
627 mp = getmntopts(opts, mopts_nfs, &flags, &altflags);
639 if (altflags & NFS_MNT_PROTO) {
654 if (altflags & NFS_MNT_PORT) {
671 if (altflags & (NFS_MNT_VERS|NFS_MNT_NFSVERS)) {
672 optval = get_nfs_vers(mp, altflags);
946 get_nfs_vers(mntoptparse_t mp, int altflags) argument
955 if (altflags & NFS_MNT_VERS)
957 else if (altflags
1663 int flags, altflags; local
[all...]
H A Dautod_parse.c2354 int altflags; local
2445 flags = altflags = 0;
2447 mop = getmntopts(mapopts, mopts_vers, &flags, &altflags);
2454 if (altflags & (NFS_MNT_VERS|NFS_MNT_NFSVERS)) {
2455 optval = get_nfs_vers(mop, altflags);
/macosx-10.10/smb-759.0/kernel/smbfs/
H A Dsmbfs_vfsops.c325 if ((smp->sm_args.altflags & SMBFS_MNT_DEBUG_ACL_ON) ||
326 (smp->sm_args.altflags & SMBFS_MNT_TIME_MACHINE) ||
367 if (treenct && (smp->sm_args.altflags & SMBFS_MNT_DFS_SHARE) &&
393 int dontNotify = ((smp->sm_args.altflags & SMBFS_MNT_SOFT) &&
433 int dontNotify = ((smp->sm_args.altflags & SMBFS_MNT_SOFT) &&
739 smp->sm_args.altflags = args->altflags;
769 if (!(smp->sm_args.altflags & SMBFS_MNT_VALIDATE_NEG_OFF)) {
807 if (smp->sm_args.altflags & SMBFS_MNT_TIME_MACHINE) {
815 if (smp->sm_args.altflags
[all...]
H A Dsmbfs.h156 int32_t altflags; member in struct:smb_mount_args
193 int32_t altflags; member in struct:smbfs_args
H A Dsmbfs_node.c235 argsp->muc_opts = (smp->sm_args.altflags & SMBFS_MNT_SOFT) ? (char *)"soft" : (char *)"";
1551 } else if (smp->sm_args.altflags & SMBFS_MNT_TIME_MACHINE) {
3187 if (smp->sm_args.altflags & SMBFS_MNT_AAPL_OFF) {
/macosx-10.10/autofs-246/automountlib/
H A Dns_fstab.c377 int altflags; local
479 flags = altflags = 0;
481 mop = getmntopts(fs->fs_mntops, mopts_net, &flags, &altflags);
569 if (altflags & FSTAB_MNT_NET) {

Completed in 123 milliseconds