Searched defs:lenstr (Results 26 - 31 of 31) sorted by relevance

12

/illumos-gate/usr/src/lib/libnsl/key/
H A Dpublickey.c119 str2key(const char *instr, int lenstr, argument
121 if (lenstr + 1 > buflen)
126 (void) memcpy(buffer, instr, lenstr);
127 buffer[lenstr] = '\0';
/illumos-gate/usr/src/common/net/wanboot/
H A Dbootlog.c253 char *lenstr; local
278 lenstr = http_get_header_value(bl_httphandle,
280 length = strtol(lenstr, NULL, 10);
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_xdr.c94 char *lenstr, *tmp; local
133 if ((lenstr = strrchr(buf, '.')) == NULL) {
139 i = atoi(lenstr + 1);
140 strcpy(lenstr, domainname + i);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dnss_dbdefs.c129 * CAUTION: (instr, instr+lenstr) and (buffer, buffer+buflen) are
134 _nss_netdb_aliases(const char *instr, int lenstr, char *buffer, int buflen) argument
144 *instr_limit = instr + lenstr;
1158 int lenstr,
1164 if (buflen <= lenstr) { /* not enough buffer */
1167 (void) memmove(buffer, instr, lenstr);
1168 buffer[lenstr] = '\0';
1156 str2packent( const char *instr, int lenstr, void *ent, char *buffer, int buflen ) argument
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dwanboot.c415 char *lenstr; local
425 lenstr = http_get_header_value(handle, CONTENT_LENGTH);
426 if (lenstr == NULL) {
431 digest_size = (size_t)strtol(lenstr, NULL, 10);
432 free(lenstr);
827 char *lenstr; local
837 lenstr = http_get_header_value(handle, CONTENT_LENGTH);
838 if (lenstr == NULL) {
843 cnt = (size_t)strtol(lenstr, NULL, 10);
844 free(lenstr);
1226 char *lenstr; local
[all...]
/illumos-gate/usr/src/lib/libnsl/nss/
H A Dnetdir_inet.c1438 str2servent(const char *instr, int lenstr, void *ent, char *buffer, int buflen) argument
1447 (buffer >= instr && (instr + lenstr) > buffer)) {
1452 limit = p + lenstr;
1529 serv->s_aliases = _nss_netdb_aliases(p, (int)(lenstr - (p - instr)),

Completed in 77 milliseconds

12