Symbol: export
bin/ksh/var.c
30
static void export ARGS((struct tbl *vp, const char *val));
bin/ksh/var.c
398
export(vq, s);
bin/ksh/var.c
759
export(vpbase, (vpbase->flag&ISSET) ? vpbase->val.s : null);
sys/arch/hppa/include/asm.h
47
.export x, entry ! .label x ! .proc
sys/arch/hppa/include/asm.h
99
#define ALTENTRY(x) ! .export x, entry ! .label x
sys/dev/microcode/aic7xxx/aicasm_gram.y
1002
export:
sys/dev/microcode/aic7xxx/aicasm_gram.y
1009
export T_SYMBOL ':'
sys/dev/microcode/aic7xxx/aicasm_gram.y
209
%type <value> export ret f1_opcode f2_opcode jmp_jc_jnc_call jz_jnz je_jne
sys/fs/nfs/common/nfsport.h
962
struct export_args export;
sys/fs/nfs/server/nfs_nfsdport.c
2903
error = vfs_export(&nfsv4root_mnt, &nfsexargp->export);
sys/fs/nfs/server/nfs_nfsdport.c
2904
if ((nfsexargp->export.ex_flags & MNT_DELEXPORT) != 0)
sys/fs/nfs/server/nfs_nfsdport.c
3137
struct nfsex_args export;
sys/fs/nfs/server/nfs_nfsdport.c
3159
error = copyin(uap->argp,(caddr_t)&export,
sys/fs/nfs/server/nfs_nfsdport.c
3162
error = nfsrv_v4rootexport(&export, cred, p);
sys/miscfs/nullfs/null.h
80
#define nulla_export la.export
sys/miscfs/overlay/overlay.h
83
#define ova_export la.export
sys/miscfs/umapfs/umap.h
49
#define umap_export la.export
sys/nfs/nfs_export.c
140
static int export(struct netexport *, const struct export_args *);
sys/nfs/nfs_export.c
306
error = export(ne, &mel->mel_exports[0]);
sys/nfs/nfs_export.c
315
error = export(ne, &mel->mel_exports[i]);
sys/nfs/nfs_export.c
482
error = export(ne, &ea);
usr.bin/at/at.c
317
int export = 1;
usr.bin/at/at.c
327
export = export &&
usr.bin/at/at.c
334
if (export) {
usr.bin/telnet/commands.c
1610
int export; /* 1 -> export with default list of variables */
usr.bin/telnet/commands.c
1640
ep->export = 0;
usr.bin/telnet/commands.c
1694
ep->export = 1;
usr.bin/telnet/commands.c
1724
ep->export = 1;
usr.bin/telnet/commands.c
1734
ep->export = 0;
usr.bin/telnet/commands.c
1768
printf("%c %-20s %s\n", ep->export ? '*' : ' ',
usr.bin/telnet/commands.c
1787
if (nep->export && (nep->welldefined == welldefined))
usr.bin/telnet/commands.c
1798
if ((ep = env_find(var)) != NULL && (!exported || ep->export))
usr.sbin/mountd/mountd.c
1298
struct export_args *export = &mel->mel_exports[j];
usr.sbin/mountd/mountd.c
1300
if (export->ex_indexfile)
usr.sbin/mountd/mountd.c
1301
free(export->ex_indexfile);
usr.sbin/mountd/mountd.c
1302
if (export->ex_addr)
usr.sbin/mountd/mountd.c
1303
free(export->ex_addr);
usr.sbin/mountd/mountd.c
1304
if (export->ex_mask)
usr.sbin/mountd/mountd.c
1305
free(export->ex_mask);
usr.sbin/mountd/mountd.c
1960
struct export_args *export;
usr.sbin/mountd/mountd.c
1974
export = &mel->mel_exports[mel->mel_nexports++];
usr.sbin/mountd/mountd.c
1975
memset(export, 0, sizeof(*export));
usr.sbin/mountd/mountd.c
1977
export->ex_flags = exflags;
usr.sbin/mountd/mountd.c
1978
export->ex_anon = *anoncrp;
usr.sbin/mountd/mountd.c
1980
export->ex_indexfile = estrdup(indexfile);
usr.sbin/mountd/mountd.c
1982
export->ex_addr = emalloc(addrlen);
usr.sbin/mountd/mountd.c
1983
export->ex_addrlen = addrlen;
usr.sbin/mountd/mountd.c
1984
memcpy(export->ex_addr, addrp, addrlen);
usr.sbin/mountd/mountd.c
1987
export->ex_mask = emalloc(masklen);
usr.sbin/mountd/mountd.c
1988
export->ex_masklen = masklen;
usr.sbin/mountd/mountd.c
1989
memcpy(export->ex_mask, maskp, masklen);