Lines Matching refs:services
123 const std::list<Service>& services, uint16_t handle) { in bta_gattc_find_matching_service() argument
124 for (const Service& service : services) { in bta_gattc_find_matching_service()
440 const std::list<Service>* services = bta_gattc_get_services_srcb(p_srcb); in bta_gattc_get_service_for_handle_srcb() local
441 if (services == NULL) return NULL; in bta_gattc_get_service_for_handle_srcb()
442 return bta_gattc_find_matching_service(*services, handle); in bta_gattc_get_service_for_handle_srcb()
447 const std::list<Service>* services = bta_gattc_get_services(conn_id); in bta_gattc_get_service_for_handle() local
448 if (services == NULL) return NULL; in bta_gattc_get_service_for_handle()
450 return bta_gattc_find_matching_service(*services, handle); in bta_gattc_get_service_for_handle()
558 static size_t bta_gattc_get_db_size(const std::list<Service>& services, in bta_gattc_get_db_size() argument
561 if (services.empty()) return 0; in bta_gattc_get_db_size()
565 for (const Service& service : services) { in bta_gattc_get_db_size()