Lines Matching refs:appkey_index

109     uint16_t appkey_index;  member
127 uint16_t appkey_index; member
525 publication->appkey_index = data.appkey_index; in mesh_model_load_publication()
549 data.appkey_index = publication->appkey_index; in mesh_model_store_publication()
682 …x, AppKey Index 0x%06x, AID %02x: ", app_key->internal_index, app_key->appkey_index, app_key->aid); in mesh_store_app_key()
686 data.appkey_index = app_key->appkey_index; in mesh_store_app_key()
712 key->appkey_index = data.appkey_index; in mesh_load_app_keys()
719 …al index 0x%x, AppKey Index 0x%06x, AID %02x: ", key->internal_index, key->appkey_index, key->aid); in mesh_load_app_keys()
723 mesh_log_key("mesh-appkey", key->appkey_index, key->key); in mesh_load_app_keys()
791 uint8_t mesh_model_bind_appkey(mesh_model_t * mesh_model, uint16_t appkey_index){ in mesh_model_bind_appkey() argument
794 if (mesh_model->appkey_indices[i] == appkey_index) return MESH_FOUNDATION_STATUS_SUCCESS; in mesh_model_bind_appkey()
798 mesh_model->appkey_indices[i] = appkey_index; in mesh_model_bind_appkey()
806 void mesh_model_unbind_appkey(mesh_model_t * mesh_model, uint16_t appkey_index){ in mesh_model_unbind_appkey() argument
809 if (mesh_model->appkey_indices[i] == appkey_index) { in mesh_model_unbind_appkey()
816 int mesh_model_contains_appkey(mesh_model_t * mesh_model, uint16_t appkey_index){ in mesh_model_contains_appkey() argument
819 if (mesh_model->appkey_indices[i] == appkey_index) return 1; in mesh_model_contains_appkey()
832 mesh_delete_app_key(transport_key->appkey_index); in mesh_access_appkey_finalize()