/chre-3.4.0/chpp/services/ |
D | wwan.c | 77 struct ChppServiceState service; // WWAN service state member 210 if (wwanServiceContext->service.openState == CHPP_OPEN_STATE_OPENED) { in chppWwanServiceOpen() 216 wwanServiceContext->service.appContext->systemApi, in chppWwanServiceOpen() 224 wwanServiceContext->service.openState = CHPP_OPEN_STATE_OPENED; in chppWwanServiceOpen() 234 chppSendTimestampedResponseOrFail(&wwanServiceContext->service, in chppWwanServiceOpen() 257 wwanServiceContext->service.openState = CHPP_OPEN_STATE_CLOSED; in chppWwanServiceClose() 269 chppSendTimestampedResponseOrFail(&wwanServiceContext->service, in chppWwanServiceClose() 286 if (wwanServiceContext->service.openState != CHPP_OPEN_STATE_OPENED) { in chppWwanServiceNotifyReset() 290 wwanServiceContext->service.openState = CHPP_OPEN_STATE_CLOSED; in chppWwanServiceNotifyReset() 323 chppSendTimestampedResponseOrFail(&wwanServiceContext->service, in chppWwanServiceGetCapabilities() [all …]
|
D | gnss.c | 75 struct ChppServiceState service; // GNSS service state member 246 if (gnssServiceContext->service.openState == CHPP_OPEN_STATE_OPENED) { in chppGnssServiceOpen() 252 gnssServiceContext->service.appContext->systemApi, in chppGnssServiceOpen() 260 gnssServiceContext->service.openState = CHPP_OPEN_STATE_OPENED; in chppGnssServiceOpen() 270 chppSendTimestampedResponseOrFail(&gnssServiceContext->service, in chppGnssServiceOpen() 293 gnssServiceContext->service.openState = CHPP_OPEN_STATE_CLOSED; in chppGnssServiceClose() 305 chppSendTimestampedResponseOrFail(&gnssServiceContext->service, in chppGnssServiceClose() 322 if (gnssServiceContext->service.openState != CHPP_OPEN_STATE_OPENED) { in chppGnssServiceNotifyReset() 326 gnssServiceContext->service.openState = CHPP_OPEN_STATE_CLOSED; in chppGnssServiceNotifyReset() 359 chppSendTimestampedResponseOrFail(&gnssServiceContext->service, in chppGnssServiceGetCapabilities() [all …]
|
D | wifi.c | 76 struct ChppServiceState service; // WiFi service state member 240 if (wifiServiceContext->service.openState == CHPP_OPEN_STATE_OPENED) { in chppWifiServiceOpen() 246 wifiServiceContext->service.appContext->systemApi, in chppWifiServiceOpen() 254 wifiServiceContext->service.openState = CHPP_OPEN_STATE_OPENED; in chppWifiServiceOpen() 264 chppSendTimestampedResponseOrFail(&wifiServiceContext->service, in chppWifiServiceOpen() 287 wifiServiceContext->service.openState = CHPP_OPEN_STATE_CLOSED; in chppWifiServiceClose() 299 chppSendTimestampedResponseOrFail(&wifiServiceContext->service, in chppWifiServiceClose() 315 if (wifiServiceContext->service.openState != CHPP_OPEN_STATE_OPENED) { in chppWifiServiceNotifyReset() 319 wifiServiceContext->service.openState = CHPP_OPEN_STATE_CLOSED; in chppWifiServiceNotifyReset() 352 chppSendTimestampedResponseOrFail(&wifiServiceContext->service, in chppWifiServiceGetCapabilities() [all …]
|
/chre-3.4.0/host/hal_generic/V1_1/ |
D | android.hardware.contexthub@1.1-service-generic.rc | 1 service vendor.contexthub-hal-1-1 /vendor/bin/hw/android.hardware.contexthub@1.1-service.generic
|
/chre-3.4.0/host/hal_generic/V1_2/ |
D | android.hardware.contexthub@1.2-service-generic.rc | 1 service vendor.contexthub-hal-1-2 /vendor/bin/hw/android.hardware.contexthub@1.2-service.generic
|
D | android.hardware.contexthub@1.2-service-small_fragments.rc | 1 service vendor.contexthub-hal-1-2 /vendor/bin/hw/android.hardware.contexthub@1.2-service.small_frag…
|
/chre-3.4.0/chpp/clients/ |
D | discovery.c | 37 const struct ChppServiceDescriptor *service); 39 struct ChppAppState *context, const struct ChppServiceDescriptor *service); 62 const struct ChppServiceDescriptor *service) { in chppIsClientCompatibleWithService() argument 63 return (memcmp(client->uuid, service->uuid, CHPP_SERVICE_UUID_LEN) == 0 && in chppIsClientCompatibleWithService() 64 client->version.major == service->version.major); in chppIsClientCompatibleWithService() 78 struct ChppAppState *context, const struct ChppServiceDescriptor *service) { in chppFindMatchingClient() argument 83 &context->registeredClients[i]->descriptor, service)) { in chppFindMatchingClient()
|
/chre-3.4.0/chpp/ |
D | RELEASE_NOTES.md | 10 - Loopback testing service 14 This release enables service integration with WWAN / WiFi / GNSS devices based on the CHRE PAL API. 19 - Discovery service to provide a list of services 21 - Standard WWAN service based on the CHRE PAL API 22 - Standard WiFi service based on the CHRE PAL API 23 - Standard GNSS service based on the CHRE PAL API 86 …- Transport-layer-loopback client and service. The Transport-layer loopback ignores app layer func… 107 - WiFi RTT client and service support 115 - Client and service fixes including length and bound checks, missing implementations 153 - Added missing WiFi ranging service response [all …]
|
D | README.md | 7 …ation Layer is responsible for the services, including client-service messaging and service discov… 11 CHPP provides several basic services that are necessary for debugging and service discovery, define… 19 …service to the other endpoint, which is considered to be a client of said service. CHPP is point-t… 82 …or example dropping any packets awaiting transmission, and resetting its service state. It then re… 134 It is also possible to specify the client/service endpoints to be enabled at runtime. 184 - 0x0f: CHPP service discovery handshake 189 The message type clarifies the direction of the messages (client <-> service) and whether a respons… 191 - 0b00 (0): Request from client. Requires response with same command from service 192 - 0b01 (1): Response from service (with the same command / transaction ID as the request) 194 - 0b11 (3): Notification from service. Client shall not respond [all …]
|
D | app.c | 281 const struct ChppService *service = in chppDatagramLenIsOk() local 283 if (service != NULL) { in chppDatagramLenIsOk() 284 minLen = service->minLength; in chppDatagramLenIsOk()
|
D | QUICKSTART.md | 72 In order to integrate the standard services using the CHRE PAL API, please refer to each service's …
|
/chre-3.4.0/ |
D | Android.bp | 171 name: "android.hardware.contexthub@1.1-service.generic", 177 "host/hal_generic/V1_1/service.cc", 181 init_rc: ["host/hal_generic/V1_1/android.hardware.contexthub@1.1-service-generic.rc"], 201 name: "android.hardware.contexthub@1.2-service.generic", 207 "host/hal_generic/V1_2/service.cc", 211 init_rc: ["host/hal_generic/V1_2/android.hardware.contexthub@1.2-service-generic.rc"],
|
D | chre_daemon.rc | 17 service vendor.chre /vendor/bin/chre
|
D | README.md | 92 The Context Hub service implementation in system server
|
D | NOTICE | 152 names, trademarks, service marks, or product names of the Licensor,
|
/chre-3.4.0/chpp/api_parser/ |
D | README.md | 6 as the WWAN service. However, the structures used in the CHRE PAL APIs are the
|