Home
last modified time | relevance | path

Searched refs:d (Results 1 – 4 of 4) sorted by relevance

/optee_client/tee-supplicant/src/
A Dtee_supp_fs.c190 char *d = NULL; in ree_fs_new_create() local
229 rmdir(d); in ree_fs_new_create()
236 d = dirname(d); in ree_fs_new_create()
245 d = dirname(d); in ree_fs_new_create()
246 rmdir(d); in ree_fs_new_create()
252 rmdir(d); in ree_fs_new_create()
253 d = dirname(d); in ree_fs_new_create()
254 rmdir(d); in ree_fs_new_create()
393 char *d = NULL; in ree_fs_new_remove() local
423 d = dirname(d); in ree_fs_new_remove()
[all …]
A Dplugin.c45 static void uuid_from_octets(TEEC_UUID *d, const uint8_t s[TEE_IOCTL_UUID_LEN]) in uuid_from_octets() argument
47 d->timeLow = ((uint32_t)s[0] << 24) | ((uint32_t)s[1] << 16) | in uuid_from_octets()
49 d->timeMid = ((uint32_t)s[4] << 8) | s[5]; in uuid_from_octets()
50 d->timeHiAndVersion = ((uint32_t)s[6] << 8) | s[7]; in uuid_from_octets()
51 memcpy(d->clockSeqAndNode, s + 8, sizeof(d->clockSeqAndNode)); in uuid_from_octets()
A Dtee_supplicant.c267 static void uuid_from_octets(TEEC_UUID *d, const uint8_t s[TEE_IOCTL_UUID_LEN]) in uuid_from_octets() argument
269 d->timeLow = (s[0] << 24) | (s[1] << 16) | (s[2] << 8) | s[3]; in uuid_from_octets()
270 d->timeMid = (s[4] << 8) | s[5]; in uuid_from_octets()
271 d->timeHiAndVersion = (s[6] << 8) | s[7]; in uuid_from_octets()
272 memcpy(d->clockSeqAndNode, s + 8, sizeof(d->clockSeqAndNode)); in uuid_from_octets()
/optee_client/libteec/src/
A Dtee_client_api.c528 static void uuid_to_octets(uint8_t d[TEE_IOCTL_UUID_LEN], const TEEC_UUID *s) in uuid_to_octets()
530 d[0] = s->timeLow >> 24; in uuid_to_octets()
531 d[1] = s->timeLow >> 16; in uuid_to_octets()
532 d[2] = s->timeLow >> 8; in uuid_to_octets()
533 d[3] = s->timeLow; in uuid_to_octets()
534 d[4] = s->timeMid >> 8; in uuid_to_octets()
535 d[5] = s->timeMid; in uuid_to_octets()
536 d[6] = s->timeHiAndVersion >> 8; in uuid_to_octets()
537 d[7] = s->timeHiAndVersion; in uuid_to_octets()
538 memcpy(d + 8, s->clockSeqAndNode, sizeof(s->clockSeqAndNode)); in uuid_to_octets()

Completed in 7 milliseconds