Searched refs:new_mp (Results 1 - 12 of 12) sorted by relevance

/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/conf/mtab/
H A Dmtab_aix.c71 mntent_t *new_mp = ALLOC(mntent_t); local
75 new_mp->mnt_dir = strdup(vmt2dataptr(mp, VMT_STUB));
76 new_mp->mnt_opts = strdup(vmt2dataptr(mp, VMT_ARGS));
82 new_mp->mnt_fsname = strdup(fsname);
87 new_mp->mnt_fsname = str3cat((char *) NULL,
95 new_mp->mnt_fsname = str3cat((char *) NULL,
103 new_mp->mnt_fsname = strdup(fsname);
108 new_mp->mnt_type = strdup(ty);
110 new_mp->mnt_passno = mp->vmt_vfsnumber;
111 new_mp
[all...]
H A Dmtab_bsd.c65 mntent_t *new_mp = ALLOC(mntent_t); local
68 new_mp->mnt_fsname = strdup(mp->f_mntfromname);
69 new_mp->mnt_dir = strdup(mp->f_mntonname);
101 new_mp->mnt_type = strdup(ty);
102 new_mp->mnt_opts = strdup("unset");
103 new_mp->mnt_freq = 0;
104 new_mp->mnt_passno = 0;
106 return new_mp;
H A Dmtab_osf.c56 mntent_t *new_mp = ALLOC(mntent_t); local
83 new_mp->mnt_fsname = strdup(mntfromptr);
85 new_mp->mnt_dir = strdup(mp->f_mntonname);
106 new_mp->mnt_type = strdup(ty);
107 new_mp->mnt_opts = strdup("unset");
108 new_mp->mnt_freq = 0;
109 new_mp->mnt_passno = 0;
111 return new_mp;
H A Dmtab_ultrix.c69 mntent_t *new_mp = ALLOC(mntent_t); local
71 new_mp->mnt_fsname = strdup(mp->fd_devname);
72 new_mp->mnt_dir = strdup(mp->fd_path);
77 new_mp->mnt_type = strdup(gt_names[mp->fd_fstype]);
78 new_mp->mnt_opts = strdup("unset");
80 new_mp->mnt_freq = 0;
81 new_mp->mnt_passno = mp->fd_dev;
83 return new_mp;
H A Dmtab_isc3.c117 mntent_t *new_mp = ALLOC(mntent_t); local
121 new_mp->mnt_fsname = strdup(nullcpy);
124 new_mp->mnt_dir = strdup(nullcpy);
127 new_mp->mnt_type = strdup(nullcpy);
130 new_mp->mnt_opts = strdup(nullcpy);
132 new_mp->mnt_freq = 0;
133 new_mp->mnt_passno = 0;
135 new_mp->mnt_time = mp->mt_time;
136 new_mp->mnt_ro = mp->mt_ro_flg;
138 return new_mp;
[all...]
H A Dmtab_file.c383 mntent_t *new_mp = ALLOC(mntent_t); local
385 new_mp->mnt_fsname = strdup(mp->mnt_fsname);
386 new_mp->mnt_dir = strdup(mp->mnt_dir);
387 new_mp->mnt_type = strdup(mp->mnt_type);
388 new_mp->mnt_opts = strdup(mp->mnt_opts);
390 new_mp->mnt_freq = mp->mnt_freq;
391 new_mp->mnt_passno = mp->mnt_passno;
395 new_mp->mnt_time = strdup(mp->mnt_time);
397 new_mp->mnt_time = mp->mnt_time;
402 new_mp
[all...]
H A Dmtab_linux.c480 mntent_t *new_mp = ALLOC(mntent_t); local
482 new_mp->mnt_fsname = strdup(mp->mnt_fsname);
483 new_mp->mnt_dir = strdup(mp->mnt_dir);
484 new_mp->mnt_type = strdup(mp->mnt_type);
485 new_mp->mnt_opts = strdup(mp->mnt_opts);
487 new_mp->mnt_freq = mp->mnt_freq;
488 new_mp->mnt_passno = mp->mnt_passno;
492 new_mp->mnt_time = strdup(mp->mnt_time);
494 new_mp->mnt_time = mp->mnt_time;
499 new_mp
[all...]
H A Dmtab_mach3.c445 mntent_t *new_mp = ALLOC(mntent_t); local
447 new_mp->mnt_fsname = convert(mp->mnt_fsname, '@', ':');
449 new_mp->mnt_dir = strdup(mp->mnt_dir);
450 new_mp->mnt_type = strdup(mp->mnt_type);
451 new_mp->mnt_opts = strdup(mp->mnt_opts);
453 new_mp->mnt_freq = mp->mnt_freq;
454 new_mp->mnt_passno = mp->mnt_passno;
456 return new_mp;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/amd/
H A Damfs_generic.c93 static mntfs *amfs_lookup_one_mntfs(am_node *new_mp, mntfs *mf, char *ivec,
95 static mntfs **amfs_lookup_mntfs(am_node *new_mp, int *error_return);
109 am_node *new_mp; local
164 for (new_mp = mp->am_child; new_mp; new_mp = new_mp->am_osib) {
165 if (FSTREQ(new_mp->am_name, expanded_fname)) {
166 if (new_mp->am_error) {
167 error = new_mp
255 amfs_lookup_one_mntfs(am_node *new_mp, mntfs *mf, char *ivec, char *def_opts, char *pfname) argument
342 amfs_lookup_mntfs(am_node *new_mp, int *error_return) argument
1061 amfs_generic_mount_child(am_node *new_mp, int *error_return) argument
1126 am_node *new_mp; local
[all...]
H A Dmap.c194 am_node *new_mp; local
200 new_mp = exported_ap_alloc();
201 if (new_mp) {
205 init_map(new_mp, fname);
210 insert_am(new_mp, mp);
219 new_mp->am_path = str3cat(new_mp->am_path,
224 dlog("setting path to %s", new_mp->am_path);
227 return new_mp;
634 am_node *new_mp; local
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpz/
H A Dpowm_ui.c74 mp_ptr new_mp = TMP_ALLOC_LIMBS (mn); local
75 mpn_lshift (new_mp, mp, mn, m_zero_cnt);
76 mp = new_mp;
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/conf/autofs/
H A Dautofs_solaris_v2_v3.c504 am_node *mp, *new_mp; local
523 new_mp = mf->mf_ops->lookup_child(mp, m->name, &err, VLOOK_LOOKUP);
524 if (!new_mp) {
532 free_map(new_mp);
572 am_node *mp, *new_mp; local
592 new_mp = mf->mf_ops->lookup_child(mp, m->name + m->isdirect, &err, VLOOK_CREATE);
593 if (new_mp && err < 0) {
594 /* new_mp->am_transp = transp; */
595 new_mp = mf->mf_ops->mount_child(new_mp,
[all...]

Completed in 90 milliseconds