Home
last modified time | relevance | path

Searched refs:lenp (Results 1 – 14 of 14) sorted by relevance

/external/elfutils/libdw/
Ddwarf_getstring.c24 dwarf_getstring (dbg, offset, lenp) in dwarf_getstring() argument
27 size_t *lenp;
47 if (lenp != NULL)
48 *lenp = endp - result;
Dlibdw.h322 size_t *lenp);
/external/srec/srec/crec/
Dsrec_results.c304 int lenp; in srec_nbest_get_result() local
312 lenp = (char)strlen(p); in srec_nbest_get_result()
313 if (return_len + lenp >= label_len) in srec_nbest_get_result()
319 return_len += lenp; in srec_nbest_get_result()
333 lenp = sprintf(et, "@%d", wtoken->end_time); in srec_nbest_get_result()
334 if (return_len + lenp >= label_len) in srec_nbest_get_result()
337 return_len += lenp; in srec_nbest_get_result()
340 lenp = 1; in srec_nbest_get_result()
341 if (return_len + lenp >= label_len) in srec_nbest_get_result()
344 return_len += lenp; in srec_nbest_get_result()
/external/ipsec-tools/src/racoon/
Dgssapi.c275 gssapi_get_itoken(struct ph1handle *iph1, int *lenp) in gssapi_get_itoken() argument
333 if (lenp) in gssapi_get_itoken()
334 *lenp = itoken->length; in gssapi_get_itoken()
346 gssapi_get_rtoken(struct ph1handle *iph1, int *lenp) in gssapi_get_rtoken() argument
394 if (lenp) in gssapi_get_rtoken()
395 *lenp = itoken->length; in gssapi_get_rtoken()
Dpfkey.c2827 pk_recv(so, lenp) in pk_recv() argument
2829 int *lenp;
2835 *lenp = -1;
2839 *lenp = recv(so, (caddr_t)&buf, sizeof(buf), MSG_PEEK | MSG_DONTWAIT);
2842 while (*lenp < 0 && errno == EAGAIN && retry < 3);
2844 if (*lenp < 0)
2847 else if (*lenp < sizeof(buf))
2854 *lenp = recv(so, (caddr_t)newmsg, reallen, MSG_PEEK);
2855 if (*lenp < 0) {
2858 } else if (*lenp != reallen) {
[all …]
Dprivsep.c102 privsep_recv(sock, bufp, lenp) in privsep_recv() argument
105 size_t *lenp;
112 *lenp = 0;
159 *lenp = len;
/external/libxml2/
Dxmlregexp.c4080 int lenn, lenp, ret; in xmlRegExecPushString2() local
4094 lenp = strlen((char *) value); in xmlRegExecPushString2()
4096 if (150 < lenn + lenp + 2) { in xmlRegExecPushString2()
4097 str = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); in xmlRegExecPushString2()
4105 memcpy(&str[0], value, lenp); in xmlRegExecPushString2()
4106 str[lenp] = XML_REG_STRING_SEPARATOR; in xmlRegExecPushString2()
4107 memcpy(&str[lenp + 1], value2, lenn); in xmlRegExecPushString2()
4108 str[lenn + lenp + 1] = 0; in xmlRegExecPushString2()
5714 int lenn, lenp; in xmlAutomataNewTransition2() local
5718 lenp = strlen((char *) token); in xmlAutomataNewTransition2()
[all …]
Dtree.c212 int lenn, lenp; in xmlBuildQName() local
219 lenp = strlen((char *) prefix); in xmlBuildQName()
221 if ((memory == NULL) || (len < lenn + lenp + 2)) { in xmlBuildQName()
222 ret = (xmlChar *) xmlMallocAtomic(lenn + lenp + 2); in xmlBuildQName()
230 memcpy(&ret[0], prefix, lenp); in xmlBuildQName()
231 ret[lenp] = ':'; in xmlBuildQName()
232 memcpy(&ret[lenp + 1], ncname, lenn); in xmlBuildQName()
233 ret[lenn + lenp + 1] = 0; in xmlBuildQName()
/external/ppp/pppd/
Dccp.c689 ccp_addci(f, p, lenp) in ccp_addci() argument
692 int *lenp;
800 *lenp = p - p0;
1068 ccp_reqci(f, p, lenp, dont_nak) in ccp_reqci() argument
1071 int *lenp;
1086 len = *lenp;
1338 if (ret == CONFREJ && *lenp == retp - p0)
1341 *lenp = retp - p0;
Dlcp.c684 lcp_addci(f, ucp, lenp) in lcp_addci() argument
687 int *lenp;
756 if (ucp - start_ucp != *lenp) {
1480 lcp_reqci(f, inp, lenp, reject_if_disagree) in lcp_reqci() argument
1483 int *lenp; /* Length of requested CIs */
1498 int l = *lenp; /* Length left */
1848 *lenp = next - inp;
1854 *lenp = nakp - nak_buffer;
1855 BCOPY(nak_buffer, inp, *lenp);
1858 *lenp = rejp - inp;
Dipv6cp.c554 ipv6cp_addci(f, ucp, lenp) in ipv6cp_addci() argument
557 int *lenp;
560 int len = *lenp;
590 *lenp -= len;
Dipcp.c749 ipcp_addci(f, ucp, lenp) in ipcp_addci() argument
752 int *lenp;
755 int len = *lenp;
826 *lenp -= len;
Dipxcp.c610 ipxcp_addci(f, ucp, lenp) in ipxcp_addci() argument
613 int *lenp;
/external/libpcap/
Doptimize.c2236 icode_to_fcode(root, lenp) in icode_to_fcode() argument
2238 int *lenp;
2249 n = *lenp = count_stmts(root);