Home
last modified time | relevance | path

Searched refs:bbool (Results 1 – 3 of 3) sorted by relevance

/optee_os/ta/pkcs11/src/
H A Dattributes.c235 uint8_t bbool = 0; in get_bool() local
236 uint32_t size = sizeof(bbool); in get_bool()
238 rc = get_attribute(head, attribute, &bbool, &size); in get_bool()
244 return bbool; in get_bool()
H A Dobject.c1218 uint8_t bbool = 0; in entry_copy_object() local
1219 uint32_t size = sizeof(bbool); in entry_copy_object()
1221 rc = get_attribute(head, PKCS11_CKA_EXTRACTABLE, &bbool, &size); in entry_copy_object()
1222 if (!rc && !bbool) { in entry_copy_object()
1224 &bbool, sizeof(uint8_t)); in entry_copy_object()
H A Dpkcs11_attributes.c202 uint8_t bbool = 0; in pkcs11_import_object_boolprop() local
206 rc = get_attribute(templ, attribute, &bbool, &size); in pkcs11_import_object_boolprop()
214 attr = &bbool; in pkcs11_import_object_boolprop()
1629 uint8_t bbool = 0; in check_attr_bval() local
1630 uint32_t sz = sizeof(bbool); in check_attr_bval()
1632 if (!get_attribute(head, attribute, &bbool, &sz) && !!bbool == val) in check_attr_bval()