Home
last modified time | relevance | path

Searched refs:systemApi (Results 1 – 21 of 21) sorted by relevance

/system/chre/platform/linux/
Dpal_wifi.cc100 bool chrePalWifiApiOpen(const struct chrePalSystemApi *systemApi, in chrePalWifiApiOpen() argument
105 if (systemApi != nullptr && callbacks != nullptr) { in chrePalWifiApiOpen()
106 gSystemApi = systemApi; in chrePalWifiApiOpen()
Dpal_wwan.cc88 bool chrePalWwanApiOpen(const struct chrePalSystemApi *systemApi, in chrePalWwanApiOpen() argument
93 if (systemApi != nullptr && callbacks != nullptr) { in chrePalWwanApiOpen()
94 gSystemApi = systemApi; in chrePalWwanApiOpen()
Dpal_gnss.cc152 bool chrePalGnssApiOpen(const struct chrePalSystemApi *systemApi, in chrePalGnssApiOpen() argument
157 if (systemApi != nullptr && callbacks != nullptr) { in chrePalGnssApiOpen()
158 gSystemApi = systemApi; in chrePalGnssApiOpen()
/system/chre/chpp/platform/linux/services/
Dplatform_wwan.c27 static bool wwanPalOpen(const struct chrePalSystemApi *systemApi, in wwanPalOpen() argument
29 gSystemApi = systemApi; in wwanPalOpen()
Dplatform_wifi.c28 static bool wifiPalOpen(const struct chrePalSystemApi *systemApi, in wifiPalOpen() argument
30 gSystemApi = systemApi; in wifiPalOpen()
Dplatform_gnss.c27 static bool gnssPalOpen(const struct chrePalSystemApi *systemApi, in gnssPalOpen() argument
29 gSystemApi = systemApi; in gnssPalOpen()
/system/chre/pal/util/include/chre/pal/util/
Dwifi_scan_cache.h74 bool chreWifiScanCacheInit(const struct chrePalSystemApi *systemApi,
/system/chre/pal/include/chre/pal/
Dwwan.h92 bool (*open)(const struct chrePalSystemApi *systemApi,
Daudio.h92 bool (*open)(const struct chrePalSystemApi *systemApi,
Dwifi.h176 bool (*open)(const struct chrePalSystemApi *systemApi,
Dgnss.h175 bool (*open)(const struct chrePalSystemApi *systemApi,
Dsensor.h161 bool (*open)(const struct chrePalSystemApi *systemApi,
/system/chre/chpp/clients/
Dwwan.c120 static bool chppWwanClientOpen(const struct chrePalSystemApi *systemApi,
405 static bool chppWwanClientOpen(const struct chrePalSystemApi *systemApi, in chppWwanClientOpen() argument
407 CHPP_DEBUG_ASSERT(systemApi != NULL); in chppWwanClientOpen()
411 gSystemApi = systemApi; in chppWwanClientOpen()
Dgnss.c121 static bool chppGnssClientOpen(const struct chrePalSystemApi *systemApi,
602 static bool chppGnssClientOpen(const struct chrePalSystemApi *systemApi, in chppGnssClientOpen() argument
604 CHPP_DEBUG_ASSERT(systemApi != NULL); in chppGnssClientOpen()
608 gSystemApi = systemApi; in chppGnssClientOpen()
Dwifi.c130 static bool chppWifiClientOpen(const struct chrePalSystemApi *systemApi,
630 static bool chppWifiClientOpen(const struct chrePalSystemApi *systemApi, in chppWifiClientOpen() argument
632 CHPP_DEBUG_ASSERT(systemApi != NULL); in chppWifiClientOpen()
636 gSystemApi = systemApi; in chppWifiClientOpen()
/system/chre/chpp/platform/
Dpal_api.c81 context->systemApi = &chrePalSystemApi; in chppPalSystemApiInit()
/system/chre/pal/util/
Dwifi_scan_cache.c171 bool chreWifiScanCacheInit(const struct chrePalSystemApi *systemApi, in chreWifiScanCacheInit() argument
173 if (systemApi == NULL || callbacks == NULL) { in chreWifiScanCacheInit()
177 gSystemApi = systemApi; in chreWifiScanCacheInit()
/system/chre/chpp/include/chpp/
Dapp.h375 const struct chrePalSystemApi *systemApi; // Pointing to the PAL system APIs member
/system/chre/chpp/services/
Dwwan.c216 wwanServiceContext->service.appContext->systemApi, in chppWwanServiceOpen()
Dgnss.c252 gnssServiceContext->service.appContext->systemApi, in chppGnssServiceOpen()
Dwifi.c246 wifiServiceContext->service.appContext->systemApi, in chppWifiServiceOpen()