| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_support_filter_uu.c | 50 unsigned char *in_buff; member in struct:uudecode 373 void *in_buff; local 380 in_buff = malloc(IN_BUFF_SIZE); 381 if (uudecode == NULL || out_buff == NULL || in_buff == NULL) { 386 free(in_buff); 391 uudecode->in_buff = in_buff; 413 * Calculate a new buffer size for in_buff. 432 /* Move the remaining data in in_buff into the new buffer. */ 434 memmove(ptr, uudecode->in_buff, uudecode->in_cnt) [all...] |
| /src/lib/libresolv/ |
| dst_api.c | 836 u_char in_buff[RAW_KEY_SIZE], *p; local 860 if ((cnt = fread(in_buff, 1, sizeof(in_buff), fp)) < 5) { 869 if (memcmp(in_buff, "Private-key-format: v", 20) != 0) 871 p = in_buff; 908 (int)(&in_buff[len] - p)); 924 memset(in_buff, 0, len); 928 memset(in_buff, 0, len);
|
| /src/external/bsd/libbind/dist/dst/ |
| dst_api.c | 828 u_char in_buff[RAW_KEY_SIZE], *p; local 852 if ((cnt = fread(in_buff, 1, sizeof(in_buff), fp)) < 5) { 860 if (memcmp(in_buff, "Private-key-format: v", 20) != 0) 863 p = in_buff; 899 ret = pk_key->dk_func->from_file_fmt(pk_key, (char *)p, &in_buff[len] - p); 914 memset(in_buff, 0, cnt); 918 memset(in_buff, 0, cnt);
|