Home
last modified time | relevance | path

Searched refs:respData (Results 1 – 22 of 22) sorted by relevance

/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/hdf_driver/src/driver_adapter/src/
H A Dcamera_control.cpp31 CHECK_SBUF_RET(respData); in CameraPowerUp()
54 CHECK_SBUF_RET(respData); in CameraPowerDown()
78 CHECK_SBUF_RET(respData); in CameraQueryConfig()
100 HdfSbufRecycle(respData); in CameraQueryConfig()
114 CHECK_SBUF_RET(respData); in CameraSetConfig()
141 CHECK_SBUF_RET(respData); in CameraGetConfig()
156 HdfSbufRecycle(respData); in CameraGetConfig()
214 CHECK_SBUF_RET(respData); in CameraEnumDevices()
227 HdfSbufRecycle(respData); in CameraEnumDevices()
241 CHECK_SBUF_RET(respData); in CameraGetAbility()
[all …]
H A Dcamera_fileformat.cpp102 CHECK_SBUF_RET(respData); in CameraOpenDevice()
125 CHECK_SBUF_RET(respData); in CameraCloseDevice()
149 CHECK_SBUF_RET(respData); in CameraSetFormat()
180 CHECK_SBUF_RET(respData); in CameraGetFormat()
202 HdfSbufRecycle(respData); in CameraGetFormat()
216 CHECK_SBUF_RET(respData); in CameraSetCrop()
246 CHECK_SBUF_RET(respData); in CameraGetCrop()
262 HdfSbufRecycle(respData); in CameraGetCrop()
276 CHECK_SBUF_RET(respData); in CameraSetFPS()
304 CHECK_SBUF_RET(respData); in CameraGetFPS()
[all …]
H A Dcamera_buffer.cpp37 struct HdfSBuf *respData = HdfSbufObtainDefaultSize(); in CameraInitMemory() local
38 CHECK_SBUF_RET(respData); in CameraInitMemory()
43 ret = SendCameraCmd(CMD_QUEUE_INIT, reqData, respData); in CameraInitMemory()
62 struct HdfSBuf *respData = HdfSbufObtainDefaultSize(); in CameraReqMemory() local
63 CHECK_SBUF_RET(respData); in CameraReqMemory()
77 ret = SendCameraCmd(CMD_REQ_MEMORY, reqData, respData); in CameraReqMemory()
95 struct HdfSBuf *respData = HdfSbufObtainDefaultSize(); in CameraQueryMemory() local
96 CHECK_SBUF_RET(respData); in CameraQueryMemory()
191 CHECK_SBUF_RET(respData); in CameraStreamQueue()
229 CHECK_SBUF_RET(respData); in CameraStreamDequeue()
[all …]
H A Dcamera_stream.cpp33 struct HdfSBuf *respData = HdfSbufObtainDefaultSize(); in CameraStreamOn() local
34 CHECK_SBUF_RET(respData); in CameraStreamOn()
39 ret = SendCameraCmd(CMD_STREAM_ON, reqData, respData); in CameraStreamOn()
56 struct HdfSBuf *respData = HdfSbufObtainDefaultSize(); in CameraStreamOff() local
57 CHECK_SBUF_RET(respData); in CameraStreamOff()
62 ret = SendCameraCmd(CMD_STREAM_OFF, reqData, respData); in CameraStreamOff()
H A Dcamera_common.cpp114 RetCode SendCameraCmd(const uint32_t cmd, struct HdfSBuf *reqData, struct HdfSBuf *respData) in SendCameraCmd() argument
129 ret = g_cameraService->dispatcher->Dispatch(&g_cameraService->object, cmd, reqData, respData); in SendCameraCmd()
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/hdf_driver/src/driver_adapter/include/
H A Dcamera_control.h39 int ReadAbilitySbufData(struct HdfSBuf *respData, struct CameraCapability &ability);
40 int ReadDeviceSbufData(int type, struct HdfSBuf *respData, struct DeviceaInfo &device);
41 int ReadSensorSbufData(struct HdfSBuf *respData, struct DeviceaInfo &device);
42 int ReadIspSbufData(struct HdfSBuf *respData, struct DeviceaInfo &device);
43 int ReadVcmSbufData(struct HdfSBuf *respData, struct DeviceaInfo &device);
44 int ReadLensSbufData(struct HdfSBuf *respData, struct DeviceaInfo &device);
45 int ReadFlashSbufData(struct HdfSBuf *respData, struct DeviceaInfo &device);
46 int ReadStreamSbufData(struct HdfSBuf *respData, struct DeviceaInfo &device);
H A Dcamera_common.h209 RetCode SendCameraCmd(const uint32_t cmd, struct HdfSBuf *reqData, struct HdfSBuf *respData);
/ohos5.0/foundation/communication/netstack/frameworks/js/builtin/fetch/src/
H A Dhttp_request.cpp23 #define ACE_CURL_EASY_SET_OPTION(handle, opt, data, respData) \ argument
29 (respData)->SetErrString(err); \
30 (respData)->SetCode(result); \
35 #define ACE_CURL_EASY_PERFORM(handle, reqData, respData) \ argument
41 (respData)->SetErrString(err); \
42 (respData)->SetCode(result); \
47 #define ACE_CURL_EASY_GET_INFO(handle, opt, data, respData) \ argument
53 (respData)->SetErrString(err); \
54 (respData)->SetCode(result); \
/ohos5.0/drivers/peripheral/wlan/client/src/sbuf/
H A Dsbuf_common_adapter.c49 int32_t SendCmdSync(const uint32_t cmd, struct HdfSBuf *reqData, struct HdfSBuf *respData) in SendCmdSync() argument
60 … int32_t ret = g_wifiService->dispatcher->Dispatch(&g_wifiService->object, cmd, reqData, respData); in SendCmdSync()
H A Dsbuf_common_adapter.h23 int32_t SendCmdSync(const uint32_t cmd, struct HdfSBuf *reqData, struct HdfSBuf *respData);
H A Dsbuf_wpa_cmd_adapter.c65 struct HdfSBuf *respData = NULL; in WifiEapolPacketReceive() local
72 respData = HdfSbufObtain(DEFAULT_EAPOL_PACKAGE_SIZE); in WifiEapolPacketReceive()
74 if (data == NULL || respData == NULL) { in WifiEapolPacketReceive()
84 ret = SendCmdSync(WIFI_WPA_CMD_RECEIVE_EAPOL, data, respData); in WifiEapolPacketReceive()
89 if (!HdfSbufReadBuffer(respData, (const void **)(&(eapol.buf)), &(eapol.len))) { in WifiEapolPacketReceive()
109 HdfSbufRecycle(respData); in WifiEapolPacketReceive()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-ads-kit/
H A Djs-apis-adsserviceextensionability.md19 (respData: Map<string, Array<advertising.Advertisement>>): void;
32 | respData | Map<string, Array<advertising.[Advertisement](js-apis-advertising.md#advertiseme…
/ohos5.0/docs/en/application-dev/reference/apis-ads-kit/
H A Djs-apis-adsserviceextensionability.md20 (respData: Map<string, Array<advertising.Advertisement>>): void;
33 | respData | Map<string, Array<advertising.[Advertisement](js-apis-advertising.md#advertiseme…
/ohos5.0/drivers/peripheral/display/hal/
H A Ddisp_hal.c25 static int32_t DispCmdSend(const uint32_t cmd, struct HdfSBuf *reqData, struct HdfSBuf *respData) in DispCmdSend() argument
34 int32_t ret = dispService->dispatcher->Dispatch(&dispService->object, cmd, reqData, respData); in DispCmdSend()
/ohos5.0/drivers/peripheral/wlan/test/unittest/client/
H A Dhdf_client_test.cpp499 static int32_t WifiEventCb(uint32_t event, void *respData, const char *ifName) in WifiEventCb() argument
502 (void)respData; in WifiEventCb()
1055 static int32_t WpaEventCb(uint32_t event, void *respData, const char *ifName) in WpaEventCb() argument
1058 (void)respData; in WpaEventCb()
/ohos5.0/drivers/peripheral/display/hal/default/
H A Ddisplay_layer.c151 static int32_t DispCmdSend(const uint32_t cmd, struct HdfSBuf *reqData, struct HdfSBuf *respData) in DispCmdSend() argument
160 int32_t ret = dispService->dispatcher->Dispatch(&dispService->object, cmd, reqData, respData); in DispCmdSend()
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_ble_central_manager.h533 std::vector<uint8_t> respData; member
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/
H A Dp2p_state_machine.h355 const std::vector<unsigned char> &respData, const WifiP2pDevice &srcDevice) const;
H A Dp2p_state_machine.cpp580 const std::vector<unsigned char> &respData, const WifiP2pDevice &srcDevice) const in BroadcastServiceResult() argument
585 callBackItem.second.OnP2pServiceAvailable(serviceType, respData, srcDevice); in BroadcastServiceResult()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_ble_central_manager.cpp505 paramSet.btRespData.SetPayload(std::string(lpDeviceParamSet.respData.begin(), in SetLpDeviceParam()
506 lpDeviceParamSet.respData.end())); in SetLpDeviceParam()
/ohos5.0/drivers/peripheral/wlan/test/unittest/hal/
H A Dwifi_hal_test.cpp207 static int32_t HalCallbackEvent(uint32_t event, void *respData, const char *ifName) in HalCallbackEvent() argument
210 if (respData == nullptr) { in HalCallbackEvent()
219 ParseScanResult((WifiScanResult *)respData); in HalCallbackEvent()
222 ParseScanResults((WifiScanResults *)respData); in HalCallbackEvent()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt.cpp1325 outParam.respData = ConvertDataToVec(inParam->rawData.rspData, in ConvertLpDeviceParamData()