Home
last modified time | relevance | path

Searched refs:deviceInfoSize (Results 1 - 7 of 7) sorted by relevance

/foundation/multimedia/av_session/frameworks/common/src/
H A Davsession_descriptor.cpp46 int32_t deviceInfoSize = static_cast<int32_t>(outputDeviceInfo_.deviceInfos_.size()); in WriteToParcel() local
47 CHECK_AND_RETURN_RET_LOG(out.WriteInt32(deviceInfoSize), false, "write deviceInfoSize failed"); in WriteToParcel()
125 int32_t deviceInfoSize; in ReadFromParcel() local
126 CHECK_AND_RETURN_RET_LOG(in.ReadInt32(deviceInfoSize), false, "write deviceInfoSize failed"); in ReadFromParcel()
128 CHECK_AND_RETURN_RET_LOG((deviceInfoSize >= 0) && (deviceInfoSize < maxDeviceInfoSize), in ReadFromParcel()
129 false, "deviceInfoSize is illegal"); in ReadFromParcel()
130 for (int j = 0; j < deviceInfoSize; in ReadFromParcel()
206 int32_t deviceInfoSize = static_cast<int32_t>(deviceInfos_.size()); WriteToParcel() local
235 int32_t deviceInfoSize; ReadFromParcel() local
[all...]
/foundation/multimedia/av_session/services/session/ipc/stub/
H A Davcontroller_callback_stub.cpp158 CHECK_AND_RETURN_RET_LOG(data.ReadInt32(connectionState), false, "write deviceInfoSize failed"); in HandleOnOutputDeviceChange()
160 int32_t deviceInfoSize; in HandleOnOutputDeviceChange() local
161 CHECK_AND_RETURN_RET_LOG(data.ReadInt32(deviceInfoSize), false, "write deviceInfoSize failed"); in HandleOnOutputDeviceChange()
163 CHECK_AND_RETURN_RET_LOG((deviceInfoSize >= 0) && (deviceInfoSize < maxDeviceInfoSize), in HandleOnOutputDeviceChange()
164 false, "deviceInfoSize is illegal"); in HandleOnOutputDeviceChange()
165 for (int i = 0; i < deviceInfoSize; i++) { in HandleOnOutputDeviceChange()
H A Davsession_callback_stub.cpp175 CHECK_AND_RETURN_RET_LOG(data.ReadInt32(connectionState), false, "write deviceInfoSize failed"); in HandleOnOutputDeviceChange()
178 int32_t deviceInfoSize; in HandleOnOutputDeviceChange() local
179 CHECK_AND_RETURN_RET_LOG(data.ReadInt32(deviceInfoSize), false, "write deviceInfoSize failed"); in HandleOnOutputDeviceChange()
181 CHECK_AND_RETURN_RET_LOG((deviceInfoSize >= 0) && (deviceInfoSize < maxDeviceInfoSize), in HandleOnOutputDeviceChange()
182 false, "deviceInfoSize is illegal"); in HandleOnOutputDeviceChange()
183 for (int i = 0; i < deviceInfoSize; i++) { in HandleOnOutputDeviceChange()
H A Davsession_service_stub.cpp778 int32_t deviceInfoSize; in HandleStartCast() local
779 CHECK_AND_RETURN_RET_LOG(data.ReadInt32(deviceInfoSize), false, "write deviceInfoSize failed"); in HandleStartCast()
781 if (deviceInfoSize > RECEIVE_DEVICE_NUM_MAX) { in HandleStartCast()
786 for (int i = 0; i < deviceInfoSize; i++) { in HandleStartCast()
/foundation/multimedia/av_session/services/session/ipc/proxy/
H A Davcontroller_callback_proxy.cpp211 int32_t deviceInfoSize = static_cast<int32_t>(outputDeviceInfo.deviceInfos_.size()); in OnOutputDeviceChange() local
212 CHECK_AND_RETURN_LOG(parcel.WriteInt32(deviceInfoSize), "write deviceInfoSize failed"); in OnOutputDeviceChange()
H A Davsession_callback_proxy.cpp235 int32_t deviceInfoSize = static_cast<int32_t>(outputDeviceInfo.deviceInfos_.size()); in OnOutputDeviceChange() local
236 CHECK_AND_RETURN_LOG(data.WriteInt32(deviceInfoSize), "write deviceInfoSize failed"); in OnOutputDeviceChange()
H A Davsession_service_proxy.cpp670 int32_t deviceInfoSize = static_cast<int32_t>(outputDeviceInfo.deviceInfos_.size()); in StartCast() local
671 CHECK_AND_RETURN_RET_LOG(data.WriteInt32(deviceInfoSize), ERR_MARSHALLING, "write deviceInfoSize failed"); in StartCast()

Completed in 7 milliseconds