Lines Matching refs:info
128 struct psa_storage_info_t info; in credentials_init() local
149 status = psa_ps_get_info(credentials_toc[slot], &info); in credentials_init()
187 struct psa_storage_info_t info; in credential_get_from_uid() local
199 status = psa_ps_get_info(uid, &info); in credential_get_from_uid()
204 credential->buf = k_malloc(info.size); in credential_get_from_uid()
209 status = psa_ps_get(uid, 0, info.size, (void *)credential->buf, in credential_get_from_uid()
373 struct psa_storage_info_t info; in tls_credential_get() local
393 status = psa_ps_get_info(uid, &info); in tls_credential_get()
402 if (info.size > *credlen) { in tls_credential_get()
404 *credlen = info.size; in tls_credential_get()
408 status = psa_ps_get(uid, 0, info.size, cred, credlen); in tls_credential_get()