Searched refs:fstype (Results 1 - 25 of 25) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dmatch_fstype.c15 int match_fstype(const struct mntent *mt, const char *fstype) argument
23 if (!fstype)
26 if (fstype[0] == 'n' && fstype[1] == 'o') {
28 fstype += 2;
32 while (fstype) {
33 if (!strncmp(mt->mnt_type, fstype, len)
34 && (!fstype[len] || fstype[len] == ',')
38 fstype
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/contrib/shell_utils/
H A Dafpd-mtab.pl18 ($device, $mount_point, $fstype) = split;
H A Dafpd-mtab.pl.in18 ($device, $mount_point, $fstype) = split;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/torture/
H A Dlocktest2.c58 char conn, f, fstype; member in struct:record
65 static int try_open(struct cli_state *c, char *nfs, int fstype, const char *fname, int flags) argument
69 switch (fstype) {
82 static BOOL try_close(struct cli_state *c, int fstype, int fd) argument
84 switch (fstype) {
95 static BOOL try_lock(struct cli_state *c, int fstype, argument
101 switch (fstype) {
117 static BOOL try_unlock(struct cli_state *c, int fstype, argument
122 switch (fstype) {
198 int server, conn, f, fstype; local
231 unsigned fstype = rec->fstype; local
301 int server, conn, f, fstype; local
321 int server, fstype, conn, f; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dumount.c30 char *fstype = 0; local
41 opt = getopt32(argv, OPTION_STRING, &fstype);
65 /* Match fstype if passed */
66 if (fstype && match_fstype(&me, fstype))
78 if (!(opt & OPT_ALL) && !fstype) {
H A Dmount.c17 singlemount() can loop through /etc/filesystems for fstype detection.
1379 // Treat fstype "auto" as unspecified.
1472 /* If we know the fstype (or don't need to), jump straight
1530 char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0; local
1553 opt = getopt32(argv, "o:t:rwanfvs", &opt_o, &fstype);
1584 if (!fstype || !strcmp(mtpair->mnt_type, fstype))
1603 mtpair->mnt_type = fstype;
1694 if (fstype && match_fstype(mtcur, fstype)) continu
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/include/
H A Dsecurity.h97 int security_fs_use(const char *fstype, unsigned int *behavior,
100 int security_genfs_sid(const char *fstype, char *name, u16 sclass,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/blkid/
H A Dblkid.h77 int blkid_known_fstype(const char *fstype);
H A Dprobe.c677 int blkid_known_fstype(const char *fstype) argument
682 if (strcmp(fstype, id->bim_type) == 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dmount.h87 extern struct vfsmount *do_kern_mount(const char *fstype, int flags,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/hpux/
H A Dsys_hpux.c462 int fstype; local
493 fstype = 0;
495 fstype = 0;
500 printk(KERN_DEBUG "returning fstype=%d\n", fstype);
501 return fstype; /* something other than default */
H A Dfs.c139 const char *fstype, const char *dataptr, int datalen)
138 hpux_mount(const char *fs, const char *path, int mflag, const char *fstype, const char *dataptr, int datalen) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/
H A Dfsck.c13 * o Changed -t fstype to behave like with mount when -A (all file
119 static char *fstype; variable
680 } else if (fstype
681 && (fstype[0] != 'n' || fstype[1] != 'o') /* != "no" */
682 && strncmp(fstype, "opts=", 5) != 0
683 && strncmp(fstype, "loop", 4) != 0
684 && !strchr(fstype, ',')
686 type = fstype;
817 * If a specific fstype i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/
H A Dfsck.c13 * o Changed -t fstype to behave like with mount when -A (all file
276 static char *fstype; variable
832 else if (fstype && strncmp(fstype, "no", 2) &&
833 strncmp(fstype, "opts=", 5) && strncmp(fstype, "loop", 4) &&
834 !strchr(fstype, ','))
835 type = fstype;
992 * If a specific fstype is specified, and it doesn't match,
1285 if (fstype)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/src/
H A Dntfs-3g.c2159 fuse_fstype fstype = FSTYPE_NONE; local
2169 fstype = FSTYPE_FUSEBLK;
2173 fstype = FSTYPE_FUSE;
2177 return fstype;
2187 fuse_fstype fstype; local
2206 fstype = get_fuse_fstype();
2207 if (fstype != FSTYPE_NONE)
2210 return fstype;
2336 fuse_fstype fstype = FSTYPE_UNKNOWN; local
2379 fstype
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/ss/
H A Dpolicydb.c626 kfree(g->fstype);
1753 newgenfs->fstype = kmalloc(len + 1,GFP_KERNEL);
1754 if (!newgenfs->fstype) {
1759 rc = next_entry(newgenfs->fstype, fp, len);
1761 kfree(newgenfs->fstype);
1765 newgenfs->fstype[len] = 0;
1768 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
1770 "fstype %s\n", newgenfs->fstype);
[all...]
H A Dpolicydb.h133 char *name; /* name of initial SID, fs, netif, fstype, path */
158 char *fstype; member in struct:genfs
H A Dservices.c1675 * @fstype: filesystem type
1684 int security_genfs_sid(const char *fstype, argument
1697 cmp = strcmp(fstype, genfs->fstype);
1737 * @fstype: filesystem type
1742 const char *fstype,
1753 if (strcmp(fstype, c->u.name) == 0)
1769 rc = security_genfs_sid(fstype, "/", SECCLASS_DIR, sid);
1741 security_fs_use( const char *fstype, unsigned int *behavior, u32 *sid) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/solaris/
H A Dfs.c250 asmlinkage int solaris_statfs(u32 path, u32 buf, int len, int fstype) argument
260 if (!fstype) {
280 if (put_user (fstype, &ss->f_type) ||
292 asmlinkage int solaris_fstatfs(u32 fd, u32 buf, int len, int fstype) argument
302 if (!fstype) {
320 return solaris_statfs(0, buf, len, fstype);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dsuper.c918 static struct vfsmount *fs_set_subtype(struct vfsmount *mnt, const char *fstype) argument
921 const char *subtype = strchr(fstype, '.');
942 do_kern_mount(const char *fstype, int flags, const char *name, void *data) argument
944 struct file_system_type *type = get_fs_type(fstype);
951 mnt = fs_set_subtype(mnt, fstype);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/cell/spufs/
H A Dinode.c637 spufs_get_sb(struct file_system_type *fstype, int flags, argument
640 return get_sb_single(fstype, flags, data, spufs_fill_super, mnt);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Dops_fstype.c822 struct file_system_type *fstype; local
835 fstype = get_fs_type("gfs2");
836 list_for_each(l, &fstype->fs_supers) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/param/
H A Dloadparm.c350 char *fstype; member in struct:__anon1713
476 NULL, /* fstype */
1154 {"fstype", P_STRING, P_LOCAL, &sDefault.fstype, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1313 string_set(&sDefault.fstype, FSTYPE_STRING);
1859 FN_LOCAL_STRING(lp_fstype, fstype)
2393 string_set(&ServicePtrs[i]->fstype, "IPC");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dreply.c432 /* NT sets the fstype of IPC$ to the null string */
433 const char *fstype = IS_IPC(conn) ? "" : lp_fstype(SNUM(conn)); local
440 p += srvstr_push(outbuf, p, fstype, -1,
H A Dtrans2.c1845 char *fstype = lp_fstype(SNUM(conn)); local
1926 /* NOTE! the fstype must *not* be null terminated or win98 won't recognise it
1928 len = srvstr_push(outbuf, pdata+12, fstype, -1, STR_UNICODE);

Completed in 177 milliseconds