Home
last modified time | relevance | path

Searched refs:tmpDesc (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/drivers/hdf_core/adapter/uhdf2/hdi/test/stub_collector/
H A Dstub_collector_test.cpp81 const char *tmpDesc = "tmp desc"; variable
89 StubConstructorRegister(tmpDesc, &tmpConstructor);
90 struct HdfRemoteService **remote = StubCollectorGetOrNewObject(tmpDesc, service);
93 StubConstructorUnregister(tmpDesc, &tmpConstructor);
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/
H A Drender_node_post_process_util.cpp278 GpuImageDesc tmpDesc = outputDesc; in PreExecute() local
279 FillTmpImageDesc(tmpDesc); in PreExecute()
280 ti_.images[0U] = gpuResourceMgr.Create(ti_.images[0U], tmpDesc); in PreExecute()
281 ti_.images[1U] = gpuResourceMgr.Create(ti_.images[1U], tmpDesc); in PreExecute()
294 GpuImageDesc tmpDesc = outputDesc; in PreExecute() local
295 FillTmpImageDesc(tmpDesc); in PreExecute()
296 tmpDesc.mipCount = nearMips; in PreExecute()
297 ti_.mipImages[0] = gpuResourceMgr.Create(ti_.mipImages[0U], tmpDesc); in PreExecute()
298 tmpDesc.mipCount = farMips; in PreExecute()
317 GpuImageDesc tmpDesc = inputDesc; // NOTE: input desc in PreExecute() local
[all …]
/ohos5.0/drivers/peripheral/usb/ddk_service/src/
H A Dusb_ddk_service.cpp183 struct UsbConfigDescriptor tmpDesc {}; in GetConfigDescriptor() struct
185 …rawHandle, configIndex, reinterpret_cast<uint8_t *>(&tmpDesc), sizeof(struct UsbConfigDescriptor)); in GetConfigDescriptor()
192 std::vector<uint8_t> tmpBuffer(tmpDesc.wTotalLength); in GetConfigDescriptor()
193 ret = GetRawConfigDescriptor(rawHandle, configIndex, tmpBuffer.data(), tmpDesc.wTotalLength); in GetConfigDescriptor()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gatt_client.cpp261 BtGattDescriptor tmpDesc; in OnDescriptorWriteResult() local
265 GattcBuildUuid(&tmpDesc.characteristic.serviceUuid, srvUuid); in OnDescriptorWriteResult()
266 GattcBuildUuid(&tmpDesc.characteristic.characteristicUuid, charcUuid); in OnDescriptorWriteResult()
267 GattcBuildUuid(&tmpDesc.descriptorUuid, descUuid); in OnDescriptorWriteResult()
272 appCallback_->writeDescriptorCb(clientId_, &tmpDesc, GetGattcResult(ret)); in OnDescriptorWriteResult()
/ohos5.0/drivers/external_device_manager/frameworks/ddk/usb/
H A Dusb_ddk_api.cpp67 auto tmpDesc = reinterpret_cast<OHOS::HDI::Usb::Ddk::V1_0::UsbDeviceDescriptor *>(desc); in OH_Usb_GetDeviceDescriptor() local
68 int32_t ret = g_ddk->GetDeviceDescriptor(deviceId, *tmpDesc); in OH_Usb_GetDeviceDescriptor()