Home | History | Annotate | Download | only in libril

Lines Matching refs:request

85 // request, response, and unsolicited msg print macro
241 extern "C" const char * requestToString(int request);
318 * Issue a single local request, ensuring that the response
322 issueLocalRequest(int request, void *data, int len) {
330 pRI->pCI = &(s_commands[request]);
341 ALOGD("C[locl]> %s", requestToString(request));
343 s_callbacks.onRequest(request, data, len, pRI);
352 int32_t request;
360 status = p.readInt32(&request);
364 ALOGE("invalid request block");
368 if (request < 1 || request >= (int32_t)NUM_ELEMS(s_commands)) {
369 ALOGE("unsupported request code %d token %d", request, token);
378 pRI->pCI = &(s_commands[request]);
398 ALOGE("invalid command block for token %d request %s",
1223 // RIL, remove the parameter from the request.
1228 // The first bytes of the RIL parcel contain the request number and the
1249 // When all RILs handle this request, this function can be removed and
1250 // the request can be sent directly to the RIL using dispatchVoid.
1258 // RILs that support RADIO_STATE_ON should support this request.
1265 // will not support this new request either and decode Voice Radio Technology
1276 // When all RILs handle this request, this function can be removed and
1277 // the request can be sent directly to the RIL using dispatchVoid.
1285 // RILs that support RADIO_STATE_ON should support this request.
1292 // will not support this new request either and decode CDMA Subscription Source
2667 ALOGE ("Invalid request");
3204 // Cancel the previous request
3317 requestToString(int request) {
3329 switch(request) {
3469 default: return "<unknown request>";