Home
last modified time | relevance | path

Searched refs:response (Results 1 - 25 of 733) sorted by relevance

12345678910>>...30

/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dresponse.c21 * @file response.c
22 * @brief Methods for managing response objects
28 #include "response.h"
42 * Add a header or footer line to the response.
44 * @param response response to add a header to
51 add_response_entry (struct MHD_Response *response, in add_response_entry() argument
58 if ( (NULL == response) || in add_response_entry()
84 hdr->next = response->first_header; in add_response_entry()
85 response in add_response_entry()
100 MHD_add_response_header(struct MHD_Response *response, const char *header, const char *content) MHD_add_response_header() argument
120 MHD_add_response_footer(struct MHD_Response *response, const char *footer, const char *content) MHD_add_response_footer() argument
140 MHD_del_response_header(struct MHD_Response *response, const char *header, const char *content) MHD_del_response_header() argument
183 MHD_get_response_headers(struct MHD_Response *response, MHD_KeyValueIterator iterator, void *iterator_cls) MHD_get_response_headers() argument
210 MHD_get_response_header(struct MHD_Response *response, const char *key) MHD_get_response_header() argument
247 struct MHD_Response *response; MHD_create_response_from_callback() local
280 MHD_set_response_options(struct MHD_Response *response, enum MHD_ResponseFlags flags, ...) MHD_set_response_options() argument
318 struct MHD_Response *response = cls; file_reader() local
340 struct MHD_Response *response = cls; free_callback() local
368 struct MHD_Response *response; MHD_create_response_from_fd_at_offset() local
419 struct MHD_Response *response; MHD_create_response_from_data() local
488 MHD_destroy_response(struct MHD_Response *response) MHD_destroy_response() argument
517 MHD_increment_response_rc(struct MHD_Response *response) MHD_increment_response_rc() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dgas_server.c55 static void gas_server_free_response(struct gas_server_response *response);
60 struct gas_server_response *response = eloop_ctx; in gas_server_response_timeout() local
64 response, MAC2STR_SEC(response->dst), response->dialog_token, in gas_server_response_timeout()
65 response->freq, response->frag_id, in gas_server_response_timeout()
66 (unsigned long) response->offset, in gas_server_response_timeout()
67 (unsigned long) (response->resp ? in gas_server_response_timeout()
68 wpabuf_len(response in gas_server_response_timeout()
77 gas_server_free_response(struct gas_server_response *response) gas_server_free_response() argument
89 gas_server_send_resp(struct gas_server *gas, struct gas_server_handler *handler, struct gas_server_response *response, const u8 *da, int freq, u8 dialog_token, struct wpabuf *query_resp, u16 comeback_delay) gas_server_send_resp() argument
173 struct gas_server_response *response; gas_server_rx_initial_req() local
256 gas_server_handle_rx_comeback_req(struct gas_server_response *response) gas_server_handle_rx_comeback_req() argument
338 struct gas_server_response *response; gas_server_rx_comeback_req() local
405 gas_server_handle_tx_status(struct gas_server_response *response, int ack) gas_server_handle_tx_status() argument
441 struct gas_server_response *response; gas_server_tx_status() local
474 struct gas_server_response *tmp, *response = NULL; gas_server_set_resp() local
529 struct gas_server_response *response, *tmp_r; gas_server_deinit() local
[all...]
/third_party/libcoap/tests/
H A Dtest_error_response.c34 coap_pdu_t *response; in t_error_response1() local
42 response = coap_new_error_response(pdu, COAP_RESPONSE_CODE(400), &opts); in t_error_response1()
44 CU_ASSERT_PTR_NOT_NULL(response); in t_error_response1()
46 CU_ASSERT(response->used_size == sizeof(teststr) - 4); in t_error_response1()
47 CU_ASSERT(response->type == COAP_MESSAGE_ACK); in t_error_response1()
48 CU_ASSERT(response->e_token_length == 0); in t_error_response1()
49 CU_ASSERT(response->code == 0x80); in t_error_response1()
50 CU_ASSERT(response->mid == 0x1234); in t_error_response1()
51 CU_ASSERT(coap_pdu_encode_header(response, COAP_PROTO_UDP) == 4); in t_error_response1()
52 CU_ASSERT(memcmp(response in t_error_response1()
63 coap_pdu_t *response; t_error_response2() local
93 coap_pdu_t *response; t_error_response3() local
132 coap_pdu_t *response; t_error_response4() local
173 coap_pdu_t *response; t_error_response5() local
214 coap_pdu_t *response; t_error_response6() local
255 coap_pdu_t *response; t_error_response7() local
291 coap_pdu_t *response; t_error_response8() local
[all...]
/base/telephony/ril_adapter/services/hril/src/
H A Dhril_modem.cpp69 const int32_t indType, const HRilErrNumber error, const void *response, size_t responseLen) in RadioStateUpdated()
71 if ((response == nullptr && responseLen != 0) || (responseLen % sizeof(int32_t)) != 0) { in RadioStateUpdated()
75 if (response == nullptr) { in RadioStateUpdated()
76 TELEPHONY_LOGE("response is null"); in RadioStateUpdated()
79 radioState_ = *(const int32_t *)response; in RadioStateUpdated()
84 const int32_t indType, const HRilErrNumber error, const void *response, size_t responseLen) in VoiceRadioTechUpdated()
86 if ((response == nullptr && responseLen != 0) || (responseLen % sizeof(HRilVoiceRadioInfo)) != 0) { in VoiceRadioTechUpdated()
90 if (response == nullptr) { in VoiceRadioTechUpdated()
91 TELEPHONY_LOGE("response is null"); in VoiceRadioTechUpdated()
95 BuildIVoiceRadioTechnology(voiceRadioTech, *(const HRilVoiceRadioInfo *)response); in VoiceRadioTechUpdated()
68 RadioStateUpdated( const int32_t indType, const HRilErrNumber error, const void *response, size_t responseLen) RadioStateUpdated() argument
83 VoiceRadioTechUpdated( const int32_t indType, const HRilErrNumber error, const void *response, size_t responseLen) VoiceRadioTechUpdated() argument
99 DsdsModeUpdated( const int32_t indType, const HRilErrNumber error, const void *response, size_t responseLen) DsdsModeUpdated() argument
114 NcfgFinishedResult( int32_t indType, HRilErrNumber error, const void *response, size_t responseLen) NcfgFinishedResult() argument
129 RestartRildNvMatch( int32_t indType, HRilErrNumber error, const void *response, size_t responseLen) RestartRildNvMatch() argument
144 ShutDownResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) ShutDownResponse() argument
150 SetRadioStateResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetRadioStateResponse() argument
156 GetRadioStateResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetRadioStateResponse() argument
170 GetImeiResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetImeiResponse() argument
184 GetImeiSvResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetImeiSvResponse() argument
199 GetMeidResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetMeidResponse() argument
220 GetVoiceRadioTechnologyResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetVoiceRadioTechnologyResponse() argument
249 GetBasebandVersionResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetBasebandVersionResponse() argument
279 SetActiveSimResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetActiveSimResponse() argument
[all...]
H A Dhril_call.cpp55 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddCallNotificationToMap()
56 size_t responseLen) { return CallStateUpdated(notifyType, error, response, responseLen); }; in AddCallNotificationToMap()
58 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddCallNotificationToMap()
59 size_t responseLen) { return CallUssdNotice(notifyType, error, response, responseLen); }; in AddCallNotificationToMap()
61 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddCallNotificationToMap()
62 size_t responseLen) { return CallSrvccStatusNotice(notifyType, error, response, responseLen); }; in AddCallNotificationToMap()
64 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddCallNotificationToMap()
65 size_t responseLen) { return CallRingbackVoiceNotice(notifyType, error, response, responseLen); }; in AddCallNotificationToMap()
67 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddCallNotificationToMap()
68 size_t responseLen) { return CallEmergencyNotice(notifyType, error, response, responseLe in AddCallNotificationToMap()
413 BuildICallList( HDI::Ril::V1_1::CallInfoList &callInfoList, const void *response, size_t responseLen) BuildICallList() argument
440 GetCallListResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetCallListResponse() argument
454 DialResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) DialResponse() argument
460 HangupResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) HangupResponse() argument
466 RejectResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) RejectResponse() argument
472 AnswerResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) AnswerResponse() argument
478 HoldCallResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) HoldCallResponse() argument
484 GetClipResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetClipResponse() argument
501 SetClipResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetClipResponse() argument
507 UnHoldCallResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) UnHoldCallResponse() argument
513 SwitchCallResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SwitchCallResponse() argument
519 CombineConferenceResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) CombineConferenceResponse() argument
525 SeparateConferenceResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SeparateConferenceResponse() argument
531 CallSupplementResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) CallSupplementResponse() argument
537 GetCallWaitingResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetCallWaitingResponse() argument
554 SetCallWaitingResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetCallWaitingResponse() argument
560 GetCallTransferInfoResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetCallTransferInfoResponse() argument
574 BuildICallForwardQueryInfoList(HDI::Ril::V1_1::CallForwardQueryInfoList &cFQueryList, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) BuildICallForwardQueryInfoList() argument
599 SetCallTransferInfoResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetCallTransferInfoResponse() argument
605 GetClirResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetClirResponse() argument
622 SetClirResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetClirResponse() argument
628 GetCallRestrictionResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetCallRestrictionResponse() argument
645 SetCallRestrictionResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetCallRestrictionResponse() argument
651 SetBarringPasswordResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetBarringPasswordResponse() argument
657 StartDtmfResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) StartDtmfResponse() argument
663 SendDtmfResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SendDtmfResponse() argument
669 StopDtmfResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) StopDtmfResponse() argument
675 GetCallPreferenceModeResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetCallPreferenceModeResponse() argument
689 SetCallPreferenceModeResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetCallPreferenceModeResponse() argument
695 SetUssdResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetUssdResponse() argument
701 GetMuteResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetMuteResponse() argument
715 SetMuteResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetMuteResponse() argument
721 GetUssdResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetUssdResponse() argument
735 GetCallFailReasonResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetCallFailReasonResponse() argument
749 BuildIEmergencyCallList( HDI::Ril::V1_1::EmergencyInfoList &emergencyCallInfoList, const void *response, size_t responseLen) BuildIEmergencyCallList() argument
773 GetEmergencyCallListResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetEmergencyCallListResponse() argument
824 SetEmergencyCallListResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetEmergencyCallListResponse() argument
830 CloseUnFinishedUssdResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) CloseUnFinishedUssdResponse() argument
836 SetVonrSwitchResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetVonrSwitchResponse() argument
842 CallStateUpdated( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) CallStateUpdated() argument
848 CallUssdNotice( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) CallUssdNotice() argument
862 CallSsNotice(int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) CallSsNotice() argument
877 CallSrvccStatusNotice( int32_t notifyType, HRilErrNumber error, const void *response, size_t responseLen) CallSrvccStatusNotice() argument
890 CallRingbackVoiceNotice( int32_t notifyType, HRilErrNumber error, const void *response, size_t responseLen) CallRingbackVoiceNotice() argument
903 CallEmergencyNotice( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) CallEmergencyNotice() argument
915 CallRsrvccStatusNotify( int32_t notifyType, HRilErrNumber error, const void *response, size_t responseLen) CallRsrvccStatusNotify() argument
[all...]
H A Dhril_data.cpp56 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddHandlerToMap()
57 size_t responseLen) { return PdpContextListUpdated(notifyType, error, response, responseLen); }; in AddHandlerToMap()
59 [this](int32_t notifyType, HRilErrNumber error, const void *response, in AddHandlerToMap()
60 size_t responseLen) { return DataLinkCapabilityUpdated(notifyType, error, response, responseLen); }; in AddHandlerToMap()
61 // response in AddHandlerToMap()
63 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddHandlerToMap()
64 size_t responseLen) { return SetInitApnInfoResponse(requestNum, responseInfo, response, responseLen); }; in AddHandlerToMap()
66 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddHandlerToMap()
67 size_t responseLen) { return SetDataProfileInfoResponse(requestNum, responseInfo, response, responseLen); }; in AddHandlerToMap()
69 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddHandlerToMap()
95 SwitchRilDataToHal(const HRilDataCallResponse *response, HDI::Ril::V1_1::SetupDataCallResultInfo &result) SwitchRilDataToHal() argument
117 SwitchHRilDataListToHal( const void *response, size_t responseLen, std::vector<HDI::Ril::V1_1::SetupDataCallResultInfo> &dcResultList) SwitchHRilDataListToHal() argument
301 CleanAllConnectionsResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) CleanAllConnectionsResponse() argument
307 DeactivatePdpContextResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) DeactivatePdpContextResponse() argument
313 ActivatePdpContextResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) ActivatePdpContextResponse() argument
329 GetPdpContextListResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetPdpContextListResponse() argument
344 SetInitApnInfoResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetInitApnInfoResponse() argument
350 SetDataProfileInfoResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetDataProfileInfoResponse() argument
356 SetLinkBandwidthReportingRuleResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetLinkBandwidthReportingRuleResponse() argument
362 PdpContextListUpdated( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) PdpContextListUpdated() argument
375 DataLinkCapabilityUpdated( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) DataLinkCapabilityUpdated() argument
391 GetLinkCapabilityResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetLinkCapabilityResponse() argument
409 GetLinkBandwidthInfoResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetLinkBandwidthInfoResponse() argument
433 SetDataPermittedResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetDataPermittedResponse() argument
[all...]
H A Dhril_sim.cpp42 // response in AddBasicHandlerToMap()
44 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddBasicHandlerToMap()
45 size_t responseLen) { return GetSimIOResponse(requestNum, responseInfo, response, responseLen); }; in AddBasicHandlerToMap()
47 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddBasicHandlerToMap()
48 size_t responseLen) { return GetSimCardStatusResponse(requestNum, responseInfo, response, responseLen); }; in AddBasicHandlerToMap()
50 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddBasicHandlerToMap()
51 size_t responseLen) { return GetImsiResponse(requestNum, responseInfo, response, responseLen); }; in AddBasicHandlerToMap()
53 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddBasicHandlerToMap()
54 size_t responseLen) { return SetActiveSimResponse(requestNum, responseInfo, response, responseLen); }; in AddBasicHandlerToMap()
56 [this](int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, in AddBasicHandlerToMap()
380 GetSimIOResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetSimIOResponse() argument
391 GetSimCardStatusResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetSimCardStatusResponse() argument
417 GetImsiResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetImsiResponse() argument
427 GetSimLockStatusResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetSimLockStatusResponse() argument
442 SetSimLockResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetSimLockResponse() argument
450 ChangeSimPasswordResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) ChangeSimPasswordResponse() argument
458 UnlockPinResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) UnlockPinResponse() argument
466 UnlockPukResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) UnlockPukResponse() argument
474 UnlockPin2Response( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) UnlockPin2Response() argument
482 UnlockPuk2Response( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) UnlockPuk2Response() argument
490 SetActiveSimResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetActiveSimResponse() argument
496 SimStkSendTerminalResponseResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimStkSendTerminalResponseResponse() argument
502 SimStkSendEnvelopeResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimStkSendEnvelopeResponse() argument
508 SimStkSendCallSetupRequestResultResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimStkSendCallSetupRequestResultResponse() argument
514 SimStkIsReadyResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimStkIsReadyResponse() argument
520 GetRadioProtocolResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) GetRadioProtocolResponse() argument
539 SetRadioProtocolResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SetRadioProtocolResponse() argument
558 SimOpenLogicalChannelResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimOpenLogicalChannelResponse() argument
575 SimCloseLogicalChannelResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimCloseLogicalChannelResponse() argument
581 SimTransmitApduLogicalChannelResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimTransmitApduLogicalChannelResponse() argument
592 SimTransmitApduBasicChannelResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimTransmitApduBasicChannelResponse() argument
603 SimAuthenticationResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SimAuthenticationResponse() argument
614 UnlockSimLockResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) UnlockSimLockResponse() argument
622 ProcessIccIoResponse( HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) ProcessIccIoResponse() argument
640 SendSimMatchedOperatorInfoResponse( int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) SendSimMatchedOperatorInfoResponse() argument
646 SimStateUpdated( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimStateUpdated() argument
652 SimStkSessionEndNotify( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimStkSessionEndNotify() argument
658 SimStkProactiveNotify( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimStkProactiveNotify() argument
668 SimStkAlphaNotify( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimStkAlphaNotify() argument
678 SimStkEventNotify( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimStkEventNotify() argument
688 SimStkCallSetupNotify( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimStkCallSetupNotify() argument
694 SimRefreshNotify( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimRefreshNotify() argument
700 SimRadioProtocolUpdated( int32_t notifyType, const HRilErrNumber error, const void *response, size_t responseLen) SimRadioProtocolUpdated() argument
788 BuildLockStatusResp(const void *response, size_t responseLen, HDI::Ril::V1_1::LockStatusResp &lockStatus) BuildLockStatusResp() argument
799 ResponseLockStatus(HDI::Ril::V1_1::LockStatusResp &lockStatus, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) ResponseLockStatus() argument
810 BuildSimIOResp(HDI::Ril::V1_1::IccIoResultInfo &result, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response, size_t responseLen) BuildSimIOResp() argument
828 CheckCharData(const void *response, size_t responseLen) CheckCharData() argument
841 BuildRadioProtocol(HDI::Ril::V1_1::RadioProtocol &radioProtocol, const void *response) BuildRadioProtocol() argument
[all...]
/base/telephony/cellular_call/test/unittest/imstest/
H A Dmmi_code_message_test.cpp50 CallWaitResponse response; in HWTEST_F() local
55 CreateGetCallWaitingResultMessage(resultMessage, response); in HWTEST_F()
58 response.status = 1; in HWTEST_F()
59 response.classCw = ServiceClassType::VOICE; in HWTEST_F()
65 CreateGetCallWaitingResultMessage(resultMessage, response); in HWTEST_F()
68 response.classCw = ServiceClassType::FAX; in HWTEST_F()
74 CreateGetCallWaitingResultMessage(resultMessage, response); in HWTEST_F()
77 response.classCw = ServiceClassType::SHORT_MESSAGE_SERVICE; in HWTEST_F()
83 CreateGetCallWaitingResultMessage(resultMessage, response); in HWTEST_F()
86 response in HWTEST_F()
103 CallWaitResponse response; HWTEST_F() local
263 CallTransferResponse response; HWTEST_F() local
309 CallTransferResponse response; HWTEST_F() local
337 CallTransferResponse response; HWTEST_F() local
388 CallTransferResponse response; HWTEST_F() local
440 CallTransferResponse response; HWTEST_F() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dgas_server.c52 static void gas_server_free_response(struct gas_server_response *response);
57 struct gas_server_response *response = eloop_ctx; in gas_server_response_timeout() local
61 response, MAC2STR(response->dst), response->dialog_token, in gas_server_response_timeout()
62 response->freq, response->frag_id, in gas_server_response_timeout()
63 (unsigned long) response->offset, in gas_server_response_timeout()
64 (unsigned long) wpabuf_len(response->resp)); in gas_server_response_timeout()
65 response in gas_server_response_timeout()
73 gas_server_free_response(struct gas_server_response *response) gas_server_free_response() argument
94 struct gas_server_response *response; gas_server_send_resp() local
238 gas_server_handle_rx_comeback_req(struct gas_server_response *response) gas_server_handle_rx_comeback_req() argument
292 struct gas_server_response *response; gas_server_rx_comeback_req() local
359 gas_server_handle_tx_status(struct gas_server_response *response, int ack) gas_server_handle_tx_status() argument
388 struct gas_server_response *response; gas_server_tx_status() local
440 struct gas_server_response *response, *tmp_r; gas_server_deinit() local
[all...]
/base/telephony/cellular_call/services/manager/src/
H A Dcellular_call_register.cpp103 void CellularCallRegister::ReportGetWaitingResult(const CallWaitResponse &response) in ReportGetWaitingResult() argument
105 TELEPHONY_LOGI("ReportGetWaitingResult result:%{public}d, status:%{public}d, class:%{public}d", response.result, in ReportGetWaitingResult()
106 response.status, response.classCw); in ReportGetWaitingResult()
112 callManagerCallBack_->UpdateGetWaitingResult(response); in ReportGetWaitingResult()
126 void CellularCallRegister::ReportGetRestrictionResult(const CallRestrictionResponse &response) in ReportGetRestrictionResult() argument
129 response.result, response.status, response.classCw); in ReportGetRestrictionResult()
135 callManagerCallBack_->UpdateGetRestrictionResult(response); in ReportGetRestrictionResult()
149 ReportGetTransferResult(const CallTransferResponse &response) ReportGetTransferResult() argument
185 ReportGetClipResult(const ClipResponse &response) ReportGetClipResult() argument
197 ReportGetClirResult(const ClirResponse &response) ReportGetClirResult() argument
220 ReportGetImsConfigResult(const GetImsConfigResponse &response) ReportGetImsConfigResult() argument
251 ReportGetImsFeatureResult(const GetImsFeatureValueResponse &response) ReportGetImsFeatureResult() argument
283 ReportGetMuteResult(const MuteControlResponse &response) ReportGetMuteResult() argument
293 ReportSetMuteResult(const MuteControlResponse &response) ReportSetMuteResult() argument
380 ReportSetEmergencyCallListResponse(const SetEccListResponse &response) ReportSetEmergencyCallListResponse() argument
430 CallModeReportInfo response; ReceiveUpdateCallMediaModeRequest() local
446 CallModeReportInfo response; ReceiveUpdateCallMediaModeResponse() local
462 CallSessionReportInfo response; HandleCallSessionEventChanged() local
475 PeerDimensionsReportInfo response; HandlePeerDimensionsChanged() local
489 int64_t response = callDataUsageInfo.dataUsage; HandleCallDataUsageChanged() local
500 CameraCapabilitiesReportInfo response; HandleCameraCapabilitiesChanged() local
[all...]
/base/telephony/core_service/frameworks/native/src/
H A Dcore_manager_inner.cpp235 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); in SetUssd() local
236 if (response == nullptr) { in SetUssd()
237 TELEPHONY_LOGE("set ussd response is null!"); in SetUssd()
240 response->SetOwner(handler); in SetUssd()
241 return telRilManager_->SetUssd(slotId, str, response); in SetUssd()
251 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); in CloseUnFinishedUssd() local
252 if (response == nullptr) { in CloseUnFinishedUssd()
253 TELEPHONY_LOGE("close unfinished ussd response is null!"); in CloseUnFinishedUssd()
256 response->SetOwner(handler); in CloseUnFinishedUssd()
257 return telRilManager_->CloseUnFinishedUssd(slotId, response); in CloseUnFinishedUssd()
267 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetUssd() local
283 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetMute() local
299 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetMute() local
315 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetEmergencyCallList() local
332 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetEmergencyCallList() local
348 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCallFailReason() local
364 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetCallPreferenceMode() local
380 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCallPreferenceMode() local
396 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetPreferredNetworkPara() local
412 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetPreferredNetworkPara() local
428 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetOperatorInfo() local
444 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCellInfoList() local
460 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCurrentCellInfo() local
476 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, gsmMessage.refId); SendGsmSms() local
492 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, refId); SendCdmaSms() local
508 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); AddSimMessage() local
524 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); DelSimMessage() local
540 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetSmscAddr() local
556 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetSmscAddr() local
572 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetCBConfig() local
588 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetCdmaCBConfig() local
604 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCBConfig() local
620 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCdmaCBConfig() local
636 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, gsmMessage.refId); SendSmsMoreMode() local
652 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SendSmsAck() local
668 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); AddCdmaSimMessage() local
684 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); DelCdmaSimMessage() local
700 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); UpdateCdmaSimMessage() local
716 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetNetworkSearchInformation() local
732 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetNetworkSelectionMode() local
748 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetNetworkSelectionMode() local
764 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetRadioState() local
780 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetRadioState() local
796 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); ShutDown() local
812 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); Dial() local
828 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); Reject() local
844 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); Hangup() local
860 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); Answer() local
876 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCallList() local
892 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); HoldCall() local
908 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); UnHoldCall() local
924 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SwitchCall() local
940 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); CombineConference() local
956 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SeparateConference() local
972 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); CallSupplement() local
990 SetClip(int32_t slotId, int32_t action, const AppExecFwk::InnerEvent::Pointer &response) SetClip() argument
1008 SetClir(int32_t slotId, int32_t action, const AppExecFwk::InnerEvent::Pointer &response) SetClir() argument
1017 SetCallWaiting( int32_t slotId, int32_t activate, const AppExecFwk::InnerEvent::Pointer &response) SetCallWaiting() argument
1027 SetCallTransferInfo( int32_t slotId, const CallTransferParam &callTransfer, const AppExecFwk::InnerEvent::Pointer &response) SetCallTransferInfo() argument
1066 SetCallRestriction( int32_t slotId, const CallRestrictionParam &callRestriction, const AppExecFwk::InnerEvent::Pointer &response) SetCallRestriction() argument
1076 SetBarringPassword(int32_t slotId, const char *oldPassword, const char *newPassword, const std::string &restrictionType, const AppExecFwk::InnerEvent::Pointer &response) SetBarringPassword() argument
1093 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetVoNRSwitch() local
1109 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SendDTMF() local
1125 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, index); SendDTMF() local
1141 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); StartDTMF() local
1157 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); StopDTMF() local
1173 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetDataPermitted() local
1189 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetInitApnInfo() local
1205 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, activateData.param); ActivatePdpContext() local
1221 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, deactivateData.param); DeactivatePdpContext() local
1237 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetPdpContextList() local
1253 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); SetLinkBandwidthReportingRule() local
1269 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetLinkBandwidthInfo() local
1285 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetLinkCapability() local
1301 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); CleanAllConnections() local
1317 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetSignalStrength() local
1333 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetCsRegStatus() local
1349 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId); GetPsRegStatus() local
2242 UnlockPin(int32_t slotId, const std::string &pin, LockStatusResponse &response) UnlockPin() argument
2251 UnlockPuk( int32_t slotId, const std::string &newPin, const std::string &puk, LockStatusResponse &response) UnlockPuk() argument
2261 AlterPin( int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) AlterPin() argument
2271 SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response) SetLockState() argument
2298 UnlockPin2(int32_t slotId, const std::string &pin2, LockStatusResponse &response) UnlockPin2() argument
2307 UnlockPuk2( int32_t slotId, const std::string &newPin2, const std::string &puk2, LockStatusResponse &response) UnlockPuk2() argument
2317 AlterPin2( int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &response) AlterPin2() argument
2354 UnlockSimLock(int32_t slotId, const PersoLockInfo &lockInfo, LockStatusResponse &response) UnlockSimLock() argument
[all...]
/base/telephony/core_service/services/sim/src/
H A Dsim_state_manager.cpp176 int32_t SimStateManager::UnlockPin(int32_t slotId, const std::string &pin, LockStatusResponse &response) in UnlockPin() argument
187 TELEPHONY_LOGI("UnlockPin::wait(), response = false"); in UnlockPin()
198 response.result = UNLOCK_OK; in UnlockPin()
200 response.result = UNLOCK_INCORRECT; in UnlockPin()
202 response.result = UNLOCK_FAIL; in UnlockPin()
204 response.remain = static_cast<int32_t>(simStateHandle_->GetUnlockData().remain); in UnlockPin()
205 TELEPHONY_LOGI("response.result :%{public}d, remain :%{public}d", response.result, response.remain); in UnlockPin()
206 return (response in UnlockPin()
209 UnlockPuk( int32_t slotId, const std::string &newPin, const std::string &puk, LockStatusResponse &response) UnlockPuk() argument
243 AlterPin( int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response) AlterPin() argument
277 SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response) SetLockState() argument
361 UnlockPin2(int32_t slotId, const std::string &pin2, LockStatusResponse &response) UnlockPin2() argument
394 UnlockPuk2( int32_t slotId, const std::string &newPin2, const std::string &puk2, LockStatusResponse &response) UnlockPuk2() argument
428 AlterPin2( int32_t slotId, const std::string &newPin2, const std::string &oldPin2, LockStatusResponse &response) AlterPin2() argument
482 UnlockSimLock(int32_t slotId, const PersoLockInfo &lockInfo, LockStatusResponse &response) UnlockSimLock() argument
519 SimAuthentication( int32_t slotId, AuthType authType, const std::string &authData, SimAuthenticationResponse &response) SimAuthentication() argument
560 int32_t response = simStateHandle_->GetSendSimMatchedOperatorInfoResponse(); SendSimMatchedOperatorInfo() local
565 GetSimIO( int32_t slotId, SimIoRequestInfo requestInfo, SimAuthenticationResponse &response) GetSimIO() argument
[all...]
/base/telephony/core_service/services/tel_ril/src/
H A Dtel_ril_manager.cpp310 int32_t slotId, int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) in SetRadioState()
312 return TaskSchedule(response, "TelRilModem", GetTelRilModem(slotId), &TelRilModem::SetRadioState, fun, rst); in SetRadioState()
315 int32_t TelRilManager::GetRadioState(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) in GetRadioState() argument
317 return TaskSchedule(response, "TelRilModem", GetTelRilModem(slotId), &TelRilModem::GetRadioState); in GetRadioState()
320 int32_t TelRilManager::ShutDown(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) in ShutDown() argument
322 return TaskSchedule(response, "TelRilModem", GetTelRilModem(slotId), &TelRilModem::ShutDown); in ShutDown()
325 int32_t TelRilManager::GetVoiceRadioTechnology(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) in GetVoiceRadioTechnology() argument
327 return TaskSchedule(response, "TelRilModem", GetTelRilModem(slotId), &TelRilModem::GetVoiceRadioTechnology); in GetVoiceRadioTechnology()
330 int32_t TelRilManager::GetImei(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) in GetImei() argument
332 return TaskSchedule(response, "TelRilMode in GetImei()
309 SetRadioState( int32_t slotId, int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) SetRadioState() argument
335 GetImeiSv(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetImeiSv() argument
340 GetMeid(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetMeid() argument
345 GetBasebandVersion(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetBasebandVersion() argument
352 Dial( int32_t slotId, std::string address, int32_t clirMode, const AppExecFwk::InnerEvent::Pointer &response) Dial() argument
358 Reject(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) Reject() argument
363 HoldCall(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) HoldCall() argument
368 UnHoldCall(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) UnHoldCall() argument
373 SwitchCall(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) SwitchCall() argument
378 Hangup(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) Hangup() argument
383 Answer(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) Answer() argument
388 CombineConference( int32_t slotId, int32_t callType, const AppExecFwk::InnerEvent::Pointer &response) CombineConference() argument
394 SeparateConference( int32_t slotId, int32_t callIndex, int32_t callType, const AppExecFwk::InnerEvent::Pointer &response) SeparateConference() argument
401 CallSupplement(int32_t slotId, int32_t type, const AppExecFwk::InnerEvent::Pointer &response) CallSupplement() argument
406 GetCallList(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCallList() argument
411 GetCallWaiting(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCallWaiting() argument
416 SetCallWaiting( int32_t slotId, const int32_t activate, const AppExecFwk::InnerEvent::Pointer &response) SetCallWaiting() argument
422 GetCallTransferInfo( int32_t slotId, const int32_t reason, const AppExecFwk::InnerEvent::Pointer &response) GetCallTransferInfo() argument
428 SetCallTransferInfo( int32_t slotId, const CallTransferParam &callTransfer, const AppExecFwk::InnerEvent::Pointer &response) SetCallTransferInfo() argument
435 GetClip(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetClip() argument
440 SetClip(int32_t slotId, const int32_t action, const AppExecFwk::InnerEvent::Pointer &response) SetClip() argument
445 GetClir(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetClir() argument
450 SetClir(int32_t slotId, const int32_t action, const AppExecFwk::InnerEvent::Pointer &response) SetClir() argument
455 GetCallRestriction( int32_t slotId, std::string fac, const AppExecFwk::InnerEvent::Pointer &response) GetCallRestriction() argument
461 SetCallRestriction( int32_t slotId, const CallRestrictionParam &callRestriction, const AppExecFwk::InnerEvent::Pointer &response) SetCallRestriction() argument
468 SetBarringPassword(int32_t slotId, const char *oldPassword, const char *newPassword, const std::string &restrictionType, const AppExecFwk::InnerEvent::Pointer &response) SetBarringPassword() argument
475 SendDtmf( int32_t slotId, const DtmfParam &dtmfParam, const AppExecFwk::InnerEvent::Pointer &response) SendDtmf() argument
482 SendDtmf( int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &response) SendDtmf() argument
488 StartDtmf( int32_t slotId, char cDTMFCode, int32_t index, const AppExecFwk::InnerEvent::Pointer &response) StartDtmf() argument
494 StopDtmf(int32_t slotId, int32_t index, const AppExecFwk::InnerEvent::Pointer &response) StopDtmf() argument
499 SetCallPreferenceMode( int32_t slotId, const int32_t mode, const AppExecFwk::InnerEvent::Pointer &response) SetCallPreferenceMode() argument
505 GetCallPreferenceMode(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCallPreferenceMode() argument
510 SetUssd(int32_t slotId, const std::string str, const AppExecFwk::InnerEvent::Pointer &response) SetUssd() argument
515 GetUssd(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetUssd() argument
520 SetMute(int32_t slotId, const int32_t mute, const AppExecFwk::InnerEvent::Pointer &response) SetMute() argument
525 GetMute(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetMute() argument
530 GetEmergencyCallList(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetEmergencyCallList() argument
535 SetEmergencyCallList( int32_t slotId, const std::vector<EmergencyCall> &eccVec, const AppExecFwk::InnerEvent::Pointer &response) SetEmergencyCallList() argument
542 GetCallFailReason(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCallFailReason() argument
547 CloseUnFinishedUssd(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) CloseUnFinishedUssd() argument
552 SetVoNRSwitch( int32_t slotId, const int32_t state, const AppExecFwk::InnerEvent::Pointer &response) SetVoNRSwitch() argument
560 SetInitApnInfo( int32_t slotId, const DataProfile &dataProfile, const AppExecFwk::InnerEvent::Pointer &response) SetInitApnInfo() argument
566 ActivatePdpContext( int32_t slotId, const ActivateDataParam &activateData, const AppExecFwk::InnerEvent::Pointer &response) ActivatePdpContext() argument
573 DeactivatePdpContext( int32_t slotId, int32_t cid, int32_t reason, const AppExecFwk::InnerEvent::Pointer &response) DeactivatePdpContext() argument
579 GetPdpContextList(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetPdpContextList() argument
584 SetLinkBandwidthReportingRule( int32_t slotId, LinkBandwidthRule linkBandwidth, const AppExecFwk::InnerEvent::Pointer &response) SetLinkBandwidthReportingRule() argument
591 GetLinkBandwidthInfo( int32_t slotId, const int32_t cid, const AppExecFwk::InnerEvent::Pointer &response) GetLinkBandwidthInfo() argument
597 SetDataPermitted( int32_t slotId, int32_t dataPermitted, const AppExecFwk::InnerEvent::Pointer &response) SetDataPermitted() argument
603 GetLinkCapability(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetLinkCapability() argument
608 CleanAllConnections(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) CleanAllConnections() argument
615 GetSignalStrength(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetSignalStrength() argument
620 GetCsRegStatus(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCsRegStatus() argument
625 GetPsRegStatus(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetPsRegStatus() argument
630 GetOperatorInfo(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetOperatorInfo() argument
635 GetNetworkSearchInformation(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetNetworkSearchInformation() argument
641 GetNetworkSelectionMode(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetNetworkSelectionMode() argument
646 SetNetworkSelectionMode( int32_t slotId, int32_t automaticFlag, std::string oper, const AppExecFwk::InnerEvent::Pointer &response) SetNetworkSelectionMode() argument
653 GetPreferredNetwork(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetPreferredNetwork() argument
658 SetPreferredNetwork( int32_t slotId, int32_t preferredNetworkType, const AppExecFwk::InnerEvent::Pointer &response) SetPreferredNetwork() argument
665 GetCellInfoList(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCellInfoList() argument
670 GetCurrentCellInfo(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCurrentCellInfo() argument
675 GetPhysicalChannelConfig(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetPhysicalChannelConfig() argument
680 SetLocateUpdates( int32_t slotId, RegNotifyMode mode, const AppExecFwk::InnerEvent::Pointer &response) SetLocateUpdates() argument
686 SetNotificationFilter( int32_t slotId, int32_t newFilter, const AppExecFwk::InnerEvent::Pointer &response) SetNotificationFilter() argument
693 SetDeviceState( int32_t slotId, int32_t deviceStateType, bool deviceStateOn, const AppExecFwk::InnerEvent::Pointer &response) SetDeviceState() argument
700 SetNrOptionMode(int32_t slotId, int32_t mode, const AppExecFwk::InnerEvent::Pointer &response) SetNrOptionMode() argument
705 GetNrOptionMode(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetNrOptionMode() argument
710 GetRrcConnectionState(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetRrcConnectionState() argument
715 GetNrSsbId(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetNrSsbId() argument
722 SendGsmSms( int32_t slotId, std::string smscPdu, std::string pdu, const AppExecFwk::InnerEvent::Pointer &response) SendGsmSms() argument
728 SendCdmaSms(int32_t slotId, std::string pdu, const AppExecFwk::InnerEvent::Pointer &response) SendCdmaSms() argument
733 AddSimMessage( int32_t slotId, const SimMessageParam &simMessage, const AppExecFwk::InnerEvent::Pointer &response) AddSimMessage() argument
740 DelSimMessage(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &response) DelSimMessage() argument
745 UpdateSimMessage( int32_t slotId, const SimMessageParam &simMessage, const AppExecFwk::InnerEvent::Pointer &response) UpdateSimMessage() argument
752 GetSmscAddr(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetSmscAddr() argument
757 GetCdmaCBConfig(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCdmaCBConfig() argument
762 SetSmscAddr( int32_t slotId, int32_t tosca, std::string address, const AppExecFwk::InnerEvent::Pointer &response) SetSmscAddr() argument
768 SetCBConfig( int32_t slotId, const CBConfigParam &cbConfig, const AppExecFwk::InnerEvent::Pointer &response) SetCBConfig() argument
775 SetCdmaCBConfig( int32_t slotId, CdmaCBConfigInfoList &cdmaCBConfigInfoList, const AppExecFwk::InnerEvent::Pointer &response) SetCdmaCBConfig() argument
781 GetCBConfig(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetCBConfig() argument
786 SendSmsMoreMode( int32_t slotId, std::string smscPdu, std::string pdu, const AppExecFwk::InnerEvent::Pointer &response) SendSmsMoreMode() argument
792 SendSmsAck( int32_t slotId, bool success, int32_t cause, const AppExecFwk::InnerEvent::Pointer &response) SendSmsAck() argument
798 AddCdmaSimMessage( int32_t slotId, int32_t status, std::string pdu, const AppExecFwk::InnerEvent::Pointer &response) AddCdmaSimMessage() argument
804 DelCdmaSimMessage( int32_t slotId, int32_t cdmaIndex, const AppExecFwk::InnerEvent::Pointer &response) DelCdmaSimMessage() argument
810 UpdateCdmaSimMessage( int32_t slotId, const CdmaSimMessageParam &cdmaSimMsg, const AppExecFwk::InnerEvent::Pointer &response) UpdateCdmaSimMessage() argument
819 GetSimStatus(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetSimStatus() argument
824 GetSimIO(int32_t slotId, SimIoRequestInfo data, const AppExecFwk::InnerEvent::Pointer &response) GetSimIO() argument
829 GetImsi(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetImsi() argument
834 GetSimLockStatus( int32_t slotId, std::string fac, const AppExecFwk::InnerEvent::Pointer &response) GetSimLockStatus() argument
840 SetSimLock( int32_t slotId, const SimLockParam &simLock, const AppExecFwk::InnerEvent::Pointer &response) SetSimLock() argument
847 ChangeSimPassword( int32_t slotId, const SimPasswordParam &simPassword, const AppExecFwk::InnerEvent::Pointer &response) ChangeSimPassword() argument
854 UnlockPin( int32_t slotId, const std::string &pin, const AppExecFwk::InnerEvent::Pointer &response) UnlockPin() argument
860 UnlockPuk( int32_t slotId, const std::string &puk, const std::string &pin, const AppExecFwk::InnerEvent::Pointer &response) UnlockPuk() argument
866 UnlockPin2( int32_t slotId, const std::string &pin2, const AppExecFwk::InnerEvent::Pointer &response) UnlockPin2() argument
872 UnlockPuk2( int32_t slotId, const std::string &puk2, const std::string &pin2, const AppExecFwk::InnerEvent::Pointer &response) UnlockPuk2() argument
878 SetActiveSim( int32_t slotId, int32_t index, int32_t enable, const AppExecFwk::InnerEvent::Pointer &response) SetActiveSim() argument
884 SendTerminalResponseCmd( int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) SendTerminalResponseCmd() argument
890 SendEnvelopeCmd( int32_t slotId, const std::string &strCmd, const AppExecFwk::InnerEvent::Pointer &response) SendEnvelopeCmd() argument
896 SendCallSetupRequestResult( int32_t slotId, bool accept, const AppExecFwk::InnerEvent::Pointer &response) SendCallSetupRequestResult() argument
903 SimStkIsReady(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) SimStkIsReady() argument
908 SimOpenLogicalChannel( int32_t slotId, const std::string &appID, const int32_t p2, const AppExecFwk::InnerEvent::Pointer &response) SimOpenLogicalChannel() argument
915 SimCloseLogicalChannel( int32_t slotId, const int32_t channelId, const AppExecFwk::InnerEvent::Pointer &response) SimCloseLogicalChannel() argument
921 SimTransmitApduLogicalChannel( int32_t slotId, const ApduSimIORequestInfo &reqInfo, const AppExecFwk::InnerEvent::Pointer &response) SimTransmitApduLogicalChannel() argument
928 SimTransmitApduBasicChannel( int32_t slotId, const ApduSimIORequestInfo &reqInfo, const AppExecFwk::InnerEvent::Pointer &response) SimTransmitApduBasicChannel() argument
934 SimAuthentication( int32_t slotId, const SimAuthenticationRequestInfo &reqInfo, const AppExecFwk::InnerEvent::Pointer &response) SimAuthentication() argument
940 UnlockSimLock( int32_t slotId, int32_t lockType, std::string password, const AppExecFwk::InnerEvent::Pointer &response) UnlockSimLock() argument
946 SendSimMatchedOperatorInfo( int32_t slotId, const NcfgOperatorInfo &reqInfo, const AppExecFwk::InnerEvent::Pointer &response) SendSimMatchedOperatorInfo() argument
952 GetRadioProtocol(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) GetRadioProtocol() argument
957 SetRadioProtocol( int32_t slotId, RadioProtocol radioProtocol, const AppExecFwk::InnerEvent::Pointer &response) SetRadioProtocol() argument
[all...]
/base/telephony/cellular_call/services/common/src/
H A Dsupplement_request_cs.cpp28 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_CLIP, index); in GetClipRequest() local
29 if (response == nullptr) { in GetClipRequest()
30 TELEPHONY_LOGE("[slot%{public}d] response is null!", slotId); in GetClipRequest()
33 response->SetOwner(GetMMIHandler(slotId)); in GetClipRequest()
34 return CoreManagerInner::GetInstance().GetClip(slotId, response); in GetClipRequest()
40 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_SET_CALL_CLIR, index); in SetClirRequest() local
41 if (response == nullptr) { in SetClirRequest()
42 TELEPHONY_LOGE("[slot%{public}d] response is null!", slotId); in SetClirRequest()
45 response->SetOwner(GetMMIHandler(slotId)); in SetClirRequest()
46 return CoreManagerInner::GetInstance().SetClir(slotId, action, response); in SetClirRequest()
52 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_CLIR, index); GetClirRequest() local
64 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_FORWARD, index); GetCallTransferRequest() local
77 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_SET_CALL_FORWARD, index); SetCallTransferRequest() local
89 AppExecFwk::InnerEvent::Pointer response = GetCallRestrictionRequest() local
112 AppExecFwk::InnerEvent::Pointer response = SetCallRestrictionRequest() local
126 AppExecFwk::InnerEvent::Pointer response = SetBarringPasswordRequest() local
140 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_SET_CALL_WAIT, index); SetCallWaitingRequest() local
152 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(RadioEvent::RADIO_GET_CALL_WAIT, index); GetCallWaitingRequest() local
180 LockStatusResponse response = { UNLOCK_FAIL, TELEPHONY_ERROR }; AlterPinPassword() local
211 LockStatusResponse response = { UNLOCK_FAIL, TELEPHONY_ERROR }; UnlockPuk() local
242 LockStatusResponse response = { UNLOCK_FAIL, TELEPHONY_ERROR }; AlterPin2Password() local
273 LockStatusResponse response = { UNLOCK_FAIL, TELEPHONY_ERROR }; UnlockPuk2() local
[all...]
H A Dmmi_code_message.cpp25 void CreateGetCallWaitingResultMessage(std::string &resultMessage, CallWaitResponse response) in CreateGetCallWaitingResultMessage() argument
27 if (response.result == TELEPHONY_SUCCESS) { in CreateGetCallWaitingResultMessage()
29 if (response.status == 1) { in CreateGetCallWaitingResultMessage()
31 CreateServiceClassMessage(resultMessage, response.classCw); in CreateGetCallWaitingResultMessage()
50 void CreateGetCallTransferResultMessage(std::string &resultMessage, CallTransferResponse response) in CreateGetCallTransferResultMessage() argument
52 if (response.result == TELEPHONY_SUCCESS) { in CreateGetCallTransferResultMessage()
55 if (response.classx > 0 && (static_cast<uint32_t>(response.classx) & classMask) != 0) { in CreateGetCallTransferResultMessage()
56 MakeCallTransferMessageEx(resultMessage, response, static_cast<uint32_t>(response in CreateGetCallTransferResultMessage()
62 MakeCallTransferMessageEx(std::string &resultMessage, CallTransferResponse response, int32_t classex) MakeCallTransferMessageEx() argument
86 CreateGetClirResultMessage(std::string &resultMessage, ClirResponse response) CreateGetClirResultMessage() argument
[all...]
/base/print/print_fwk/test/unittest/service_test/
H A Dprint_cups_attribute_test.cpp108 ipp_t *response = ippNewResponse(request); in DoTestResponse() local
110 if (response == nullptr) { in DoTestResponse()
113 preFunc(response); in DoTestResponse()
114 postFunc(response); in DoTestResponse()
115 ippDelete(response); in DoTestResponse()
120 PostResponseTestFunc postResponseFunc = [this, postFunc](ipp_t *response) { in DoTest()
122 ParsePrinterAttributes(response, printerCaps); in DoTest()
136 PreAttrTestFunc preFunc = [this](ipp_t *response) { in HWTEST_F()
137 ippAddInteger(response, IPP_TAG_PRINTER, IPP_TAG_ENUM, "printer-state", IPP_PRINTER_IDLE); in HWTEST_F()
138 ippAddString(response, IPP_TAG_PRINTE in HWTEST_F()
[all...]
/third_party/gptfdisk/
H A Dsupport.cc77 // (If def is outside of the low-high range, an explicit response
80 uint64_t response, num; in GetNumber() local
89 num = sscanf(line, "%" PRIu64, &response); in GetNumber()
90 if (num == 1) { // user provided a response in GetNumber()
91 if ((response < low) || (response > high)) in GetNumber()
94 response = def; in GetNumber()
96 } while ((response < low) || (response > high)); in GetNumber()
99 response in GetNumber()
106 char response; GetYN() local
140 uint64_t response = def, bytesPerUnit, mult = 1, divide = 1; IeeeToInt() local
[all...]
/base/telephony/core_service/interfaces/innerkits/include/
H A Di_tel_ril_manager.h41 int32_t slotId, int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) = 0;
42 virtual int32_t GetRadioState(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
44 virtual int32_t ShutDown(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
97 const std::string &restrictionType, const AppExecFwk::InnerEvent::Pointer &response) = 0;
110 virtual int32_t GetSignalStrength(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
112 virtual int32_t GetCsRegStatus(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
114 virtual int32_t GetPsRegStatus(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
116 virtual int32_t GetOperatorInfo(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
118 virtual int32_t GetCellInfoList(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0;
120 virtual int32_t GetCurrentCellInfo(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response)
[all...]
/third_party/protobuf/conformance/
H A Dconformance_nodejs.js44 var response = new conformance.ConformanceResponse();
48 response.setSkipped("JSON not supported.");
49 return response;
59 response.setParseError(err.toString());
60 return response;
67 response.setParseError(err.toString());
68 return response;
76 response.setSkipped("JSON not supported.");
77 return response;
80 response
[all...]
H A Dconformance_php.php31 $response = new \Conformance\ConformanceResponse(); variable
34 $response->setProtobufPayload("");
35 return $response;
40 $response->setParseError($e->getMessage());
41 return $response;
44 $response->setSkipped("PHP doesn't support proto2");
45 return $response;
57 $response->setParseError($e->getMessage());
58 return $response;
61 $response
102 $response = doTest($request); global() variable
[all...]
/base/print/print_fwk/services/print_service/src/
H A Dprint_cups_attribute.cpp25 bool ParseAttributeToValue(ipp_t *response, const std::string &keyword, T &value, in ParseAttributeToValue() argument
32 ipp_attribute_t *attrPtr = ippFindAttribute(response, keyword.c_str(), IPP_TAG_KEYWORD); in ParseAttributeToValue()
51 bool ParseAttributesToList(ipp_t *response, const std::string &keyword, std::vector<T> &list, in ParseAttributesToList() argument
58 ipp_attribute_t *attrPtr = ippFindAttribute(response, keyword.c_str(), IPP_TAG_KEYWORD); in ParseAttributesToList()
99 std::string ConvertIppAttributesToJsonString(ipp_t *response, const std::string &keyword) in ConvertIppAttributesToJsonString() argument
101 ipp_attribute_t *attrPtr = ippFindAttribute(response, keyword.c_str(), IPP_TAG_KEYWORD); in ConvertIppAttributesToJsonString()
116 void SetCapabilityGroupAttribute(ipp_t *response, PrinterCapability &printerCaps) in SetCapabilityGroupAttribute() argument
119 if ((attrPtr = ippFindAttribute(response, "printer-state", IPP_TAG_ENUM)) != NULL) { in SetCapabilityGroupAttribute()
123 if ((attrPtr = ippFindAttribute(response, "printer-info", IPP_TAG_TEXTLANG)) != NULL) { in SetCapabilityGroupAttribute()
126 if ((attrPtr = ippFindAttribute(response, "printe in SetCapabilityGroupAttribute()
131 ParseDuplexModeAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseDuplexModeAttributes() argument
154 ParseColorModeAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseColorModeAttributes() argument
177 ParsePageSizeAttributes(ipp_t *response, PrinterCapability &printerCaps) ParsePageSizeAttributes() argument
193 ParseQualityAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseQualityAttributes() argument
221 ParseCopiesAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseCopiesAttributes() argument
237 ParseSupportedResolutionAttribute(ipp_t *response, PrinterCapability &printerCaps) ParseSupportedResolutionAttribute() argument
277 ParseDefaultResolutionAttribute(ipp_t *response, PrinterCapability &printerCaps) ParseDefaultResolutionAttribute() argument
310 ParseMediaColDefaultAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseMediaColDefaultAttributes() argument
352 ParseMediaMarginAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseMediaMarginAttributes() argument
373 ParseOrientationAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseOrientationAttributes() argument
402 ParseOtherAttributes(ipp_t *response, PrinterCapability &printerCaps) ParseOtherAttributes() argument
419 SetOptionAttribute(ipp_t *response, PrinterCapability &printerCaps) SetOptionAttribute() argument
464 ParsePrinterAttributes(ipp_t *response, PrinterCapability &printerCaps) ParsePrinterAttributes() argument
481 ParsePrinterStatusAttributes(ipp_t *response, PrinterStatus &status) ParsePrinterStatusAttributes() argument
[all...]
/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/cache/
H A Dentry.js16 // that are named in a response's vary header
25 // allow list for response headers that will be written to the cache index
26 // note: we must not store the real response's age header, or when we load
27 // a cache policy based on the metadata it will think the cached response
45 const getMetadata = (request, response, options) => {
52 // options on which we must match the request and vary the response
59 if (response.status !== 200 && response.status !== 304) {
60 metadata.status = response.status
77 // if the response ha
[all...]
/base/telephony/ril_adapter/services/hril/include/
H A Dhril_call.h72 const void *response, size_t responseLen);
73 int32_t DialResponse(int32_t requestNum, HDI::Ril::V1_1::RilRadioResponseInfo &responseInfo, const void *response,
76 const void *response, size_t responseLen);
78 const void *response, size_t responseLen);
80 const void *response, size_t responseLen);
82 const void *response, size_t responseLen);
84 const void *response, size_t responseLen);
86 const void *response, size_t responseLen);
88 const void *response, size_t responseLen);
90 const void *response, size_
[all...]
/third_party/skia/tools/skiaserve/
H A DResponse.cpp43 // SendOK just sends an empty response with a 200 OK status code.
47 MHD_Response* response = MHD_create_response_from_buffer(strlen(data), in SendOK() local
50 int ret = MHD_queue_response(connection, 200, response); in SendOK()
51 MHD_destroy_response(response); in SendOK()
56 MHD_Response* response = MHD_create_response_from_buffer(strlen(msg), in SendError() local
59 int ret = MHD_queue_response(connection, 500, response); in SendError()
60 MHD_destroy_response(response); in SendError()
66 MHD_Response* response = MHD_create_response_from_buffer(data->size(), in SendData() local
69 MHD_add_response_header(response, "Content-Type", type); in SendData()
72 MHD_add_response_header(response, "Conten in SendData()
83 MHD_Response* response = MHD_create_response_from_buffer( SendTemplate() local
[all...]
/third_party/node/deps/undici/src/lib/fetch/
H A Dindex.js11 } = require('./response')
196 // 12. Let handleFetchDone given response response be to finalize and
197 // report timing with response, globalObject, and "fetch".
198 const handleFetchDone = (response) =>
199 finalizeAndReportTiming(response, 'fetch')
203 // given response being these substeps:
205 const processResponse = (response) => {
211 // 2. If response’s aborted flag is set, then:
212 if (response
[all...]

Completed in 17 milliseconds

12345678910>>...30