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

12

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/loginutils/
H A Dpasswd.c19 char *newp = NULL; local
38 newp = bb_askpass(0, "New password:"); /* returns ptr to static */
39 if (!newp)
41 newp = xstrdup(newp); /* we are going to bb_askpass() again, so save it */
43 && obscure(orig, newp, pw) && myuid)
49 if (strcmp(cp, newp)) {
60 ret = xstrdup(pw_encrypt(newp, salt));
66 nuke_str(newp);
67 if (ENABLE_FEATURE_CLEAN_UP) free(newp);
91 char *newp; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dgopher.c97 char *newp; local
102 newp = path;
103 newp+=2;
106 j = strlen(newp);
108 if(newp[i] == '?')
109 newp[i] = '\x09';
112 sel = curl_easy_unescape(data, newp, 0, &len);
H A Ddict.c100 char *newp; local
107 newp = curl_easy_unescape(data, inputbuff, 0, &len);
108 if(!newp)
115 for(ptr = newp;
126 free(newp);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv6/
H A Daddrlabel.c194 struct ip6addrlbl_entry *newp; local
219 newp = kmalloc(sizeof(*newp), GFP_KERNEL);
220 if (!newp)
223 ipv6_addr_prefix(&newp->prefix, prefix, prefixlen);
224 newp->prefixlen = prefixlen;
225 newp->ifindex = ifindex;
226 newp->addrtype = addrtype;
227 newp->label = label;
228 INIT_HLIST_NODE(&newp
237 __ip6addrlbl_add(struct ip6addrlbl_entry *newp, int replace) argument
282 struct ip6addrlbl_entry *newp; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/intl/
H A Dplural.y81 struct expression *newp;
89 newp = (struct expression *) malloc (sizeof (*newp));
90 if (newp != NULL)
92 newp->nargs = nargs;
93 newp->operation = op;
95 newp->val.args[i] = args[i];
96 return newp;
H A Ddcigettext.c320 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
323 if (newp != NULL) { \
324 newp->address = (addr); \
325 newp->next = (list); \
326 (list) = newp; \
644 struct known_translation_t *newp; local
646 newp = (struct known_translation_t *)
649 if (newp != NULL)
651 newp
[all...]
H A Dplural.c99 struct expression *newp; local
107 newp = (struct expression *) malloc (sizeof (*newp));
108 if (newp != NULL)
110 newp->nargs = nargs;
111 newp->operation = op;
113 newp->val.args[i] = args[i];
114 return newp;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dplural.y69 struct expression *newp;
77 newp = (struct expression *) malloc (sizeof (*newp));
78 if (newp != NULL)
80 newp->nargs = nargs;
81 newp->operation = op;
83 newp->val.args[i] = args[i];
84 return newp;
H A Ddcigettext.c392 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
395 if (newp != NULL) { \
396 newp->address = (addr); \
397 newp->next = (list); \
398 (list) = newp; \
777 struct known_translation_t *newp; local
784 newp = (struct known_translation_t *) malloc (size);
785 if (newp != NULL)
793 (char *) mempcpy (newp
[all...]
H A Dplural.c199 struct expression *newp; local
207 newp = (struct expression *) malloc (sizeof (*newp));
208 if (newp != NULL)
210 newp->nargs = nargs;
211 newp->operation = op;
213 newp->val.args[i] = args[i];
214 return newp;
/netgear-R7000-V1.0.7.12_1.2.5/src/include/
H A Dbcm_mpool_pub.h164 * newp: OUTPUT The handle for the new pool, if creation is successful
178 bcm_mp_pool_h *newp);
207 * newp: OUTPUT The handle for the new pool, if creation is successful
217 bcm_mp_pool_h *newp);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dftw.c253 struct known_object *newp = malloc (sizeof (struct known_object)); local
254 if (newp == NULL)
256 newp->dev = st->st_dev;
257 newp->ino = st->st_ino;
258 return __tsearch (newp, &data->known_objects, object_compare) ? 0 : -1;
298 char *newp; local
300 newp = (char *) realloc (buf, bufsize);
301 if (newp == NULL)
309 buf = newp;
401 char *newp; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/
H A Dospf6_dbex.c454 ack_type (struct ospf6_lsa *newp, int ismore_recent, argument
464 if (CHECK_FLAG (newp->flag, OSPF6_LSA_FLAG_FLOODBACK))
469 ! CHECK_FLAG (newp->flag, OSPF6_LSA_FLAG_FLOODBACK))
487 else if (CHECK_FLAG (newp->flag, OSPF6_LSA_FLAG_DUPLICATE) &&
488 CHECK_FLAG (newp->flag, OSPF6_LSA_FLAG_IMPLIEDACK))
506 else if (CHECK_FLAG (newp->flag, OSPF6_LSA_FLAG_DUPLICATE) &&
507 ! CHECK_FLAG (newp->flag, OSPF6_LSA_FLAG_IMPLIEDACK))
511 else if (IS_LSA_MAXAGE (newp))
513 if (! ospf6_lsdb_lookup (newp->header->type, newp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/selinux/ss/
H A Dmls.h45 struct policydb *newp,
H A Dmls.c468 * policy `oldp' to the values specified in the policy `newp'.
471 struct policydb *newp,
484 levdatum = hashtab_search(newp->p_levels.table,
495 catdatum = hashtab_search(newp->p_cats.table,
470 mls_convert_context(struct policydb *oldp, struct policydb *newp, struct context *c) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dhdlcdrv.h302 unsigned newp; local
306 newp = (hb->wr+1) % HDLCDRV_HDLCBUFFER;
307 if (newp != hb->rd) {
309 hb->wr = newp;
H A Dnodemask.h327 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
329 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits);
335 const nodemask_t *oldp, const nodemask_t *newp, int nbits)
337 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
326 __node_remap(int oldbit, const nodemask_t *oldp, const nodemask_t *newp, int nbits) argument
334 __nodes_remap(nodemask_t *dstp, const nodemask_t *srcp, const nodemask_t *oldp, const nodemask_t *newp, int nbits) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libsmb/
H A Dasn1.c146 char *newp; local
150 v = strtol(p, &newp, 10);
151 p = newp;
152 v2 = strtol(p, &newp, 10);
153 p = newp;
158 v = strtol(p, &newp, 10);
159 p = newp;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppoecd/
H A Dmain.c962 struct callout *newp, *p, **pp; local
970 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
972 newp->c_arg = arg;
973 newp->c_func = func;
975 newp->c_time.tv_sec = timenow.tv_sec + secs;
976 newp->c_time.tv_usec = timenow.tv_usec + usecs;
977 if (newp->c_time.tv_usec >= 1000000) {
978 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
979 newp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/
H A Dmain.c1360 struct callout *newp, *p, **pp; local
1365 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1367 newp->c_arg = arg;
1368 newp->c_func = func;
1370 newp->c_time.tv_sec = timenow.tv_sec + secs;
1371 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1372 if (newp->c_time.tv_usec >= 1000000) {
1373 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1374 newp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppd/
H A Dmain.c1096 struct callout *newp, *p, **pp; local
1104 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1106 newp->c_arg = arg;
1107 newp->c_func = func;
1109 newp->c_time.tv_sec = timenow.tv_sec + secs;
1110 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1111 if (newp->c_time.tv_usec >= 1000000) {
1112 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1113 newp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dfnmatch_loop.c1073 struct patternlist *newp; \
1088 newp = (struct patternlist *) alloca (newpsize); \
1089 newp->malloced = 0; \
1093 newp = (struct patternlist *) malloc (newpsize); \
1094 if (!newp) \
1096 newp->malloced = 1; \
1098 *((CHAR *) MEMPCPY (newp->str, startp, p - startp)) = L_('\0'); \
1099 newp->next = NULL; \
1100 *lastp = newp; \
1101 lastp = &newp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_table.c147 u_char *newp = (u_char *)&new->u.prefix;
152 newp[i] = np[i];
168 newp[i] = np[i] & maskbit[new->prefixlen % 8];
146 u_char *newp = (u_char *)&new->u.prefix; local
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dtable.c144 u_char *newp = (u_char *)&new->u.prefix;
149 newp[i] = np[i];
165 newp[i] = np[i] & maskbit[new->prefixlen % 8];
143 u_char *newp = (u_char *)&new->u.prefix; local
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/tcl/
H A Dtcl_internal.c778 _CopyObjBytes(interp, obj, newp, sizep, freep)
781 void *newp;
799 *(void **)newp = tmp;
811 *(void **)newp = new;

Completed in 401 milliseconds

12