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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/compat/
H A Dstrdup.c16 char *new; local
18 if (new = (char *) malloc(strlen(string) + 1))
19 strcpy(new, string);
21 return new;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/nfsd/
H A Dauth.c24 struct cred *new; local
31 /* discard any old override before preparing the new set */
33 new = prepare_creds();
34 if (!new)
37 new->fsuid = rqstp->rq_cred.cr_uid;
38 new->fsgid = rqstp->rq_cred.cr_gid;
43 new->fsuid = exp->ex_anon_uid;
44 new->fsgid = exp->ex_anon_gid;
49 if (!new->fsuid)
50 new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/apparmor/
H A Dcontext.c24 * cred or task context but instead creates a new one. Ideally the task
33 * aa_alloc_task_context - allocate a new task_cxt
60 * @new: a blank task context (NOT NULL)
63 void aa_dup_task_context(struct aa_task_cxt *new, const struct aa_task_cxt *old) argument
65 *new = *old;
66 aa_get_profile(new->profile);
67 aa_get_profile(new->previous);
68 aa_get_profile(new->onexec);
73 * @profile: new profile (NOT NULL)
80 struct cred *new; local
122 struct cred *new = prepare_creds(); local
148 struct cred *new = prepare_creds(); local
186 struct cred *new = prepare_creds(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/mac/
H A DM5converteol.sh18 cat $f | tr '\r' '\n' > $f.new
19 if [ "`diff -q $f $f.new`" != "" ] ; then
20 mv $f.new $f
23 rm $f.new
H A DM5replace.sh25 cat $f | sed -e "s,$1,$2," > $f.new
26 if [ "`diff -q $f $f.new`" != "" ] ; then
27 mv $f.new $f
30 rm $f.new
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/tests/
H A Dlmp.sh4 ../tcpdump -t -n -v -v -v -r lmp.pcap >lmp.new
5 if diff lmp.new lmp.out
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dmsvcrt.h39 // Need to undef new if including crtdbg.h which may redefine new itself
40 #ifdef new
41 #undef new macro
53 #define WXDEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
55 // this define works around a bug with inline declarations of new, see
60 #define new WXDEBUG_NEW macro
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Dcred.c234 struct cred *new; local
236 new = kmem_cache_zalloc(cred_jar, GFP_KERNEL);
237 if (!new)
241 new->tgcred = kzalloc(sizeof(*new->tgcred), GFP_KERNEL);
242 if (!new->tgcred) {
243 kmem_cache_free(cred_jar, new);
246 atomic_set(&new->tgcred->usage, 1);
249 atomic_set(&new->usage, 1);
251 if (security_cred_alloc_blank(new, GFP_KERNE
282 struct cred *new; local
328 struct cred *new; local
379 struct cred *new; local
464 commit_creds(struct cred *new) argument
543 abort_creds(struct cred *new) argument
564 override_creds(const struct cred *new) argument
641 struct cred *new; local
695 set_security_override(struct cred *new, u32 secid) argument
711 set_security_override_from_ctx(struct cred *new, const char *secctx) argument
733 set_create_files_as(struct cred *new, struct inode *inode) argument
[all...]
H A Duser_namespace.c16 * Create a new user namespace, deriving the creator from the user in the
17 * passed credentials, and replacing that user with the new root user for the
18 * new namespace.
23 int create_user_ns(struct cred *new) argument
38 /* Alloc new root user. */
45 /* set the new root user in the credentials under preparation */
46 ns->creator = new->user;
47 new->user = root_user;
48 new->uid = new
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cachefiles/
H A Dsecurity.c22 struct cred *new; local
27 new = prepare_kernel_cred(current);
28 if (!new) {
34 ret = set_security_override_from_ctx(new, cache->secctx);
36 put_cred(new);
45 cache->cache_cred = new;
87 struct cred *new; local
94 new = prepare_creds();
95 if (!new)
102 ret = set_create_files_as(new, roo
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/LDAP/smbldap-tools-0.9.2/
H A Dsmbldap-userinfo110 # read new values
111 my %new;
113 $new{'name'} = $Options{'f'};
116 $new{'office'} = $Options{'r'};
119 $new{'wphone'} = $Options{'w'};
122 $new{'hphone'} = $Options{'h'};
125 $new{'other'} = $Options{'o'};
128 $new{'shell'} = $Options{'s'};
132 print "Enter the new value, or press ENTER for the default\n";
135 $new{'shel
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dsetsignal.c77 struct sigaction old, new; local
79 memset(&new, 0, sizeof(new));
80 new.sa_handler = func;
81 if (sigaction(sig, &new, &old) < 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dftrace.c25 static int ftrace_modify_code(unsigned long ip, u32 old, u32 new) argument
31 "1: cas [%[ip]], %[old], %[new]\n"
46 : [new] "0" (new), [old] "r" (old), [ip] "r" (ip)
49 if (replaced != old && replaced != new)
58 u32 old, new; local
61 new = ftrace_nop;
62 return ftrace_modify_code(ip, old, new);
68 u32 old, new; local
71 new
78 u32 old, new; local
103 u32 old, new; local
113 u32 old, new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iputils/racoon/
H A Dremoteconf.c74 * If matching anonymous entry, then new entry is copied from anonymous entry.
141 struct remoteconf *new; local
143 new = racoon_calloc(1, sizeof(*new));
144 if (new == NULL)
147 new->proposal = NULL;
150 new->doitype = IPSEC_DOI;
151 new->sittype = IPSECDOI_SIT_IDENTITY_ONLY;
152 new->idvtype = IDTYPE_ADDRESS;
153 new
264 struct isakmpsa *new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/dnsmasq-2.15/src/
H A Doption.c356 struct resolvc *new, *list = daemon->resolv_files; local
370 new = safe_malloc(sizeof(struct resolvc));
371 new->next = list;
372 new->name = name;
373 new->is_default = 0;
374 new->logged = 0;
375 list = new;
393 struct mx_record *new = safe_malloc(sizeof(struct mx_record)); local
394 new->next = daemon->mxnames;
395 daemon->mxnames = new;
445 struct iname *new = safe_malloc(sizeof(struct iname)); local
481 struct iname *new = safe_malloc(sizeof(struct iname)); local
507 struct iname *new = safe_malloc(sizeof(struct iname)); local
764 struct dhcp_context *new = safe_malloc(sizeof(struct dhcp_context)); local
877 struct dhcp_config *new = safe_malloc(sizeof(struct dhcp_config)); local
1042 struct dhcp_opt *new = safe_malloc(sizeof(struct dhcp_opt)); local
1215 struct dhcp_vendor *new = safe_malloc(sizeof(struct dhcp_vendor)); local
1233 struct doctor *new; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/ec/cpp/
H A Dgen_ECVersion35 cat > ECVersion.h.new <<EOT
53 if diff ECVersion.h ECVersion.h.new >/dev/null 2>&1; then
54 rm -f ECVersion.h.new
57 mv ECVersion.h.new ECVersion.h
61 mv ECVersion.h.new ECVersion.h
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-i386/
H A Dbugs.c26 struct sigaction old, new; local
29 new.sa_handler = cmov_sigill_test_handler;
32 new.sa_flags = SA_NODEFER;
33 sigemptyset(&new.sa_mask);
34 sigaction(SIGILL, &new, &old);
43 sigaction(SIGILL, &old, &new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/dnsmasq/contrib/slackware-dnsmasq/
H A Ddoinst.sh.gz
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dstrdup.c43 void *new = malloc (len); local
45 if (new == NULL)
48 return (char *) memcpy (new, s, len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dstrdup.c43 void *new = malloc (len); local
45 if (new == NULL)
48 return (char *) memcpy (new, s, len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dstrdup.c43 void *new = malloc (len); local
45 if (new == NULL)
48 return (char *) memcpy (new, s, len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/os_brew/
H A Dos_rename.c18 __os_rename(env, old, new, silent)
20 const char *old, *new;
32 if (IFILEMGR_Rename(pIFileMgr, old, new) == SUCCESS)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dstrdup.c43 void *new = malloc (len); local
45 if (new == NULL)
48 return (char *) memcpy (new, s, len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Dcds.t31 my $lex = new LexFile $Dfile ;
34 ok 1, my $lexD = new LexDir($home) ;
36 ok 2, my $env = new BerkeleyDB::Env -Flags => DB_CREATE|DB_INIT_MPOOL,
39 ok 3, my $db = new BerkeleyDB::Btree -Filename => $Dfile,
54 my $lex = new LexFile $Dfile ;
57 ok 7, my $lexD = new LexDir($home) ;
59 ok 8, my $env = new BerkeleyDB::Env -Flags => DB_INIT_CDB|DB_CREATE|DB_INIT_MPOOL,
62 ok 9, my $db = new BerkeleyDB::Btree -Filename => $Dfile,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Drwsem.h123 signed long old, new;
139 : "=&d" (old), "=&d" (new), "=Q" (sem->count)
151 signed long old, new;
171 : "=&d" (old), "=&d" (new), "=Q" (sem->count)
182 signed long old, new, tmp;
199 : "=&d" (old), "=&d" (new), "=Q" (sem->count)
244 signed long old, new;
260 : "=&d" (old), "=&d" (new), "=Q" (sem->count)
263 if (new < 0)
264 if ((new
[all...]

Completed in 398 milliseconds

1234567891011>>