HomeSort by relevance Sort by last modified time
    Searched defs:pRI (Results 1 - 2 of 2) sorted by null

  /hardware/ril/libril/
ril.cpp 223 RequestInfo *pRI;
251 pRI = (RequestInfo *)calloc(1, sizeof(RequestInfo));
252 if (pRI == NULL) {
257 pRI->token = serial;
258 pRI->pCI = &(s_commands[request]);
259 pRI->socket_id = socket_id;
264 pRI->p_next = *pendingRequestsHook;
265 *pendingRequestsHook = pRI;
270 return pRI;
517 checkAndDequeueRequestInfoIfAck(struct RequestInfo *pRI, bool isAck)
    [all...]
ril_service.cpp 472 void sendErrorResponse(RequestInfo *pRI, RIL_Errno err) {
473 pRI->pCI->responseFunction((int) pRI->socket_id,
474 (int) RadioResponseType::SOLICITED, pRI->token, err, NULL, 0);
482 bool copyHidlStringToRil(char **dest, const hidl_string &src, RequestInfo *pRI) {
490 RLOGE("Memory allocation failed for request %s", requestToString(pRI->pCI->requestNumber));
491 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
508 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
509 if (pRI == NULL) {
512 CALL_ONREQUEST(request, NULL, 0, pRI, slotId)
    [all...]

Completed in 289 milliseconds