Home
last modified time | relevance | path

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

/system/chre/platform/linux/
Dpal_wwan.cc90 bool chrePalWwanApiOpen(const struct chrePalSystemApi *systemApi, in chrePalWwanApiOpen() argument
95 if (systemApi != nullptr && callbacks != nullptr) { in chrePalWwanApiOpen()
96 gSystemApi = systemApi; in chrePalWwanApiOpen()
Dpal_audio.cc55 bool chrePalAudioApiOpen(const struct chrePalSystemApi *systemApi, in chrePalAudioApiOpen() argument
60 if (systemApi != nullptr && callbacks != nullptr) { in chrePalAudioApiOpen()
61 gSystemApi = systemApi; in chrePalAudioApiOpen()
Dpal_ble.cc136 bool chrePalBleApiOpen(const struct chrePalSystemApi *systemApi, in chrePalBleApiOpen() argument
141 if (systemApi != nullptr && callbacks != nullptr) { in chrePalBleApiOpen()
142 gSystemApi = systemApi; in chrePalBleApiOpen()
Dpal_sensor.cc67 bool chrePalSensorApiOpen(const struct chrePalSystemApi *systemApi, in chrePalSensorApiOpen() argument
72 if (systemApi != nullptr && callbacks != nullptr) { in chrePalSensorApiOpen()
73 gSystemApi = systemApi; in chrePalSensorApiOpen()
Dpal_gnss.cc215 bool chrePalGnssApiOpen(const struct chrePalSystemApi *systemApi, in chrePalGnssApiOpen() argument
220 if (systemApi != nullptr && callbacks != nullptr) { in chrePalGnssApiOpen()
221 gSystemApi = systemApi; in chrePalGnssApiOpen()
Dpal_wifi.cc213 bool chrePalWifiApiOpen(const struct chrePalSystemApi *systemApi, in chrePalWifiApiOpen() argument
218 if (systemApi != nullptr && callbacks != nullptr) { in chrePalWifiApiOpen()
219 gSystemApi = systemApi; in chrePalWifiApiOpen()
/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.c30 static bool gnssPalOpen(const struct chrePalSystemApi *systemApi, in gnssPalOpen() argument
32 gSystemApi = systemApi; in gnssPalOpen()
/system/chre/chpp/clients/
Dwwan.c123 static bool chppWwanClientOpen(const struct chrePalSystemApi *systemApi,
401 static bool chppWwanClientOpen(const struct chrePalSystemApi *systemApi, in chppWwanClientOpen() argument
403 CHPP_DEBUG_ASSERT(systemApi != NULL); in chppWwanClientOpen()
407 gSystemApi = systemApi; in chppWwanClientOpen()
Dgnss.c123 static bool chppGnssClientOpen(const struct chrePalSystemApi *systemApi,
590 static bool chppGnssClientOpen(const struct chrePalSystemApi *systemApi, in chppGnssClientOpen() argument
592 CHPP_DEBUG_ASSERT(systemApi != NULL); in chppGnssClientOpen()
596 gSystemApi = systemApi; in chppGnssClientOpen()
Dwifi.c137 static bool chppWifiClientOpen(const struct chrePalSystemApi *systemApi,
833 static bool chppWifiClientOpen(const struct chrePalSystemApi *systemApi, in chppWifiClientOpen() argument
835 CHPP_DEBUG_ASSERT(systemApi != NULL); in chppWifiClientOpen()
839 gSystemApi = systemApi; in chppWifiClientOpen()
/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,
Dgnss.h175 bool (*open)(const struct chrePalSystemApi *systemApi,
Dble.h160 bool (*open)(const struct chrePalSystemApi *systemApi,
Dsensor.h166 bool (*open)(const struct chrePalSystemApi *systemApi,
Dwifi.h273 bool (*open)(const struct chrePalSystemApi *systemApi,
/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/platform/
Dpal_api.c81 context->systemApi = &chrePalSystemApi; in chppPalSystemApiInit()
/system/chre/chpp/include/chpp/
Dapp.h372 const struct chrePalSystemApi *systemApi; // Pointing to the PAL system APIs member
/system/chre/chpp/services/
Dwwan.c215 wwanServiceContext->service.appContext->systemApi, in chppWwanServiceOpen()
Dgnss.c251 gnssServiceContext->service.appContext->systemApi, in chppGnssServiceOpen()
Dwifi.c300 wifiServiceContext->service.appContext->systemApi, in chppWifiServiceOpen()