Home
last modified time | relevance | path

Searched refs:slen (Results 1 – 5 of 5) sorted by relevance

/system/core/toolbox/
Ddynarray.c69 void strlist_append_b( strlist_t *list, const void* str, size_t slen ) in strlist_append_b() argument
71 char *copy = malloc(slen+1); in strlist_append_b()
72 memcpy(copy, str, slen); in strlist_append_b()
73 copy[slen] = '\0'; in strlist_append_b()
Ddynarray.h72 void strlist_append_b( strlist_t *list, const void* str, size_t slen );
/system/core/libmincrypt/test/
Drsa_test.c801 int slen; in main() local
806 signature = parsehex(signature_##n, &slen); \ in main()
807 int result = RSA_verify(&key_15, signature, slen, hash, sizeof(hash)); \ in main()
/system/extras/tests/bionic/libc/common/
Dtest_udp.c44 int s, i, slen=sizeof(si_other); in main() local
89 if (recvfrom(s, buf, BUFLEN, 0, (struct sockaddr*)&si_other, (socklen_t*)&slen)==-1) in main()
113 if (sendto(s, buf, BUFLEN, 0, (struct sockaddr*)&si_other, slen)==-1) in main()
/system/core/adb/
Dfile_sync_client.c574 int slen = strlen(spath); in mkcopyinfo() local
577 int ssize = slen + nlen + 2; in mkcopyinfo()