Lines Matching refs:h
56 static TEE_Result propset_get(TEE_PropSetHandle h, in propset_get() argument
60 if (h == TEE_PROPSET_CURRENT_TA) { in propset_get()
63 } else if (h == TEE_PROPSET_CURRENT_CLIENT) { in propset_get()
66 } else if (h == TEE_PROPSET_TEE_IMPLEMENTATION) { in propset_get()
135 static bool is_propset_pseudo_handle(TEE_PropSetHandle h) in is_propset_pseudo_handle() argument
137 return h == TEE_PROPSET_CURRENT_TA || in is_propset_pseudo_handle()
138 h == TEE_PROPSET_CURRENT_CLIENT || in is_propset_pseudo_handle()
139 h == TEE_PROPSET_TEE_IMPLEMENTATION; in is_propset_pseudo_handle()
142 static TEE_Result propget_get_property(TEE_PropSetHandle h, const char *name, in propget_get_property() argument
152 if (is_propset_pseudo_handle(h)) { in propget_get_property()
155 res = propset_get(h, &eps, &eps_len); in propget_get_property()
166 res = _utee_get_property_name_to_index((unsigned long)h, name, in propget_get_property()
171 res = _utee_get_property((unsigned long)h, index, NULL, NULL, in propget_get_property()
174 struct prop_enumerator *pe = (struct prop_enumerator *)h; in propget_get_property()