| /drivers/adapter/uhdf2/hdi/test/hdi_sample/sample_service_cpp/ |
| D | sample_service.cpp | 23 int32_t SampleService::BooleanTypeTest(const bool input, bool& output) const in BooleanTypeTest() argument 29 int32_t SampleService::ByteTypeTest(const int8_t input, int8_t& output) const in ByteTypeTest() argument 35 int32_t SampleService::ShortTypeTest(const int16_t input, int16_t& output) const in ShortTypeTest() argument 41 int32_t SampleService::IntTypeTest(const int32_t input, int32_t& output) const in IntTypeTest() argument 47 int32_t SampleService::LongTypeTest(const int64_t input, int64_t& output) const in LongTypeTest() argument 53 int32_t SampleService::FloatTypeTest(const float input, float& output) const in FloatTypeTest() argument 59 int32_t SampleService::DoubleTypeTest(const double input, double& output) const in DoubleTypeTest() argument 65 int32_t SampleService::StringTypeTest(const std::string& input, std::string& output) const in StringTypeTest() argument 71 int32_t SampleService::UcharTypeTest(const uint8_t input, uint8_t& output) const in UcharTypeTest() argument 77 int32_t SampleService::UshortTypeTest(const uint16_t input, uint16_t& output) const in UshortTypeTest() argument [all …]
|
| D | sample_service_stub.cpp | 28 const bool input = data.ReadBool(); in SampleStubBooleanTypeTest() local 48 const int8_t input = data.ReadInt8(); in SampleStubByteTypeTest() local 68 const int16_t input = data.ReadInt16(); in SampleStubShortTypeTest() local 88 const int32_t input = data.ReadInt32(); in SampleStubIntTypeTest() local 108 const int64_t input = data.ReadInt64(); in SampleStubLongTypeTest() local 128 const float input = data.ReadFloat(); in SampleStubFloatTypeTest() local 148 const double input = data.ReadDouble(); in SampleStubDoubleTypeTest() local 168 const std::string input = data.ReadString(); in SampleStubStringTypeTest() local 188 const uint8_t input = data.ReadUint8(); in SampleStubUcharTypeTest() local 208 const uint16_t input = data.ReadUint16(); in SampleStubUshortTypeTest() local [all …]
|
| /drivers/adapter/uhdf2/hdi/test/hdi_sample/sample_service_c/ |
| D | sample_service.c | 23 static int32_t HdiBooleanTypeTestImpl(struct HdfDeviceObject *device, const bool input, bool *outpu… in HdiBooleanTypeTestImpl() 29 static int32_t HdiByteTypeTestImpl(struct HdfDeviceObject *device, const int8_t input, int8_t *outp… in HdiByteTypeTestImpl() 35 static int32_t HdiShortTypeTestImpl(struct HdfDeviceObject *device, const int16_t input, int16_t *o… in HdiShortTypeTestImpl() 41 static int32_t HdiIntTypeTestImpl(struct HdfDeviceObject *device, const int32_t input, int32_t *out… in HdiIntTypeTestImpl() 47 static int32_t HdiLongTypeTestImpl(struct HdfDeviceObject *device, const int64_t input, int64_t *ou… in HdiLongTypeTestImpl() 53 static int32_t HdiFloatTypeTestImpl(struct HdfDeviceObject *device, const float input, float *outpu… in HdiFloatTypeTestImpl() 59 static int32_t HdiDoubleTypeTestImpl(struct HdfDeviceObject *device, const double input, double *ou… in HdiDoubleTypeTestImpl() 65 static int32_t HdiStringTypeTestImpl(struct HdfDeviceObject *device, const char *input, char **outp… in HdiStringTypeTestImpl() 71 static int32_t HdiUcharTypeTestImpl(struct HdfDeviceObject *device, const uint8_t input, uint8_t *o… in HdiUcharTypeTestImpl() 77 static int32_t HdiUshortTypeTestImpl(struct HdfDeviceObject *device, const uint16_t input, uint16_t… in HdiUshortTypeTestImpl() [all …]
|
| D | sample_service_stub.c | 27 bool input = false; in SerStubBooleanTypeTest() local 50 int8_t input; in SerStubByteTypeTest() local 72 int16_t input; in SerStubShortTypeTest() local 94 int32_t input; in SerStubIntTypeTest() local 116 int64_t input; in SerStubLongTypeTest() local 139 float input; in SerStubFloatTypeTest() local 161 double input; in SerStubDoubleTypeTest() local 183 const char *input = HdfSbufReadString(data); in SerStubStringTypeTest() local 205 uint8_t input; in SerStubUcharTypeTest() local 227 uint16_t input; in SerStubUshortTypeTest() local [all …]
|
| /drivers/adapter/uhdf2/hdi/test/hdi_sample/sample_client_cpp/ |
| D | sample_client_cpp_test.cpp | 46 bool input = true; variable 60 int8_t input = 5; variable 74 int16_t input = 5; variable 88 int32_t input = 5; variable 102 int64_t input = 5; variable 116 float input = 5; variable 130 double input = 5; variable 144 std::string input("cpp sample client test"); variable 158 uint8_t input = 5; variable 172 uint16_t input = 5; variable [all …]
|
| /drivers/adapter/uhdf2/hdi/test/hdi_sample/sample_client_c/ |
| D | sample_client_c_test.cpp | 45 bool input = true; variable 61 int8_t input = 10; variable 77 int16_t input = 10; variable 93 int32_t input = 10; variable 109 int64_t input = 10; variable 125 float input = 10; variable 141 double input = 10; variable 157 const char *input = "c sample client test"; variable 173 uint8_t input = 10; variable 189 uint16_t input = 10; variable [all …]
|
| /drivers/adapter/uhdf2/hdi/test/hdi_sample/sample_client_cpp/unittest/ |
| D | sample_proxy.cpp | 24 int32_t SampleProxy::BooleanTypeTest(const bool input, bool& output) in BooleanTypeTest() 45 int32_t SampleProxy::ByteTypeTest(const int8_t input, int8_t& output) in ByteTypeTest() 66 int32_t SampleProxy::ShortTypeTest(const int16_t input, int16_t& output) in ShortTypeTest() 87 int32_t SampleProxy::IntTypeTest(const int32_t input, int32_t& output) in IntTypeTest() 108 int32_t SampleProxy::LongTypeTest(const int64_t input, int64_t& output) in LongTypeTest() 129 int32_t SampleProxy::FloatTypeTest(const float input, float& output) in FloatTypeTest() 150 int32_t SampleProxy::DoubleTypeTest(const double input, double& output) in DoubleTypeTest() 171 int32_t SampleProxy::StringTypeTest(const std::string& input, std::string& output) in StringTypeTest() 192 int32_t SampleProxy::UcharTypeTest(const uint8_t input, uint8_t& output) in UcharTypeTest() 213 int32_t SampleProxy::UshortTypeTest(const uint16_t input, uint16_t& output) in UshortTypeTest() [all …]
|
| /drivers/adapter/uhdf2/hdi/test/hdi_sample/sample_client_c/unittest/ |
| D | sample_proxy.c | 41 static int32_t SampleProxyBooleanTypeTest(struct ISample *self, const bool input, bool *output) in SampleProxyBooleanTypeTest() 84 static int32_t SampleProxyByteTypeTest(struct ISample *self, const int8_t input, int8_t *output) in SampleProxyByteTypeTest() 126 static int32_t SampleProxyShortTypeTest(struct ISample *self, const int16_t input, int16_t *output) in SampleProxyShortTypeTest() 168 static int32_t SampleProxyIntTypeTest(struct ISample *self, const int32_t input, int32_t *output) in SampleProxyIntTypeTest() 210 static int32_t SampleProxyLongTypeTest(struct ISample *self, const int64_t input, int64_t *output) in SampleProxyLongTypeTest() 252 static int32_t SampleProxyFloatTypeTest(struct ISample *self, const float input, float *output) in SampleProxyFloatTypeTest() 295 static int32_t SampleProxyDoubleTypeTest(struct ISample *self, const double input, double *output) in SampleProxyDoubleTypeTest() 338 static int32_t SampleProxyStringTypeTest(struct ISample *self, const char* input, char **output) in SampleProxyStringTypeTest() 382 static int32_t SampleProxyUcharTypeTest(struct ISample *self, const uint8_t input, uint8_t *output) in SampleProxyUcharTypeTest() 424 static int32_t SampleProxyUshortTypeTest(struct ISample *self, const uint16_t input, uint16_t *outp… in SampleProxyUshortTypeTest() [all …]
|
| /drivers/peripheral/usb/sample/host/liteos_test/src/ |
| D | usbhost_nosdk_speed.c | 295 static int32_t UsbSerialSpeedInit(const struct UsbSpeedTest *input, int32_t *ifaceNum) in UsbSerialSpeedInit() 374 struct UsbSpeedTest *input = NULL; in UsbSerialSpeed() local
|
| D | usbhost_sdkapi_speed.c | 328 static int32_t UsbSerialSpeedInit(const struct UsbSpeedTest *input, int32_t *ifaceNum) in UsbSerialSpeedInit() 480 struct UsbSpeedTest *input = NULL; in UsbSerialSpeed() local
|
| D | usbhost_sdkraw_speed.c | 554 static int32_t UsbSerialSpeedInit(const struct UsbSpeedTest *input, int32_t *ifaceNum) in UsbSerialSpeedInit() 687 struct UsbSpeedTest *input = NULL; in UsbSerialSpeed() local
|
| D | usbhost_speed_test.c | 159 static enum speedServer checkServer(const char* input) in checkServer()
|
| /drivers/liteos/tzdriver/src/ |
| D | tzdriver_compat.c | 217 int CryptoAescbcKey256(unsigned char *output, const unsigned char *input, struct AesParam *param) in CryptoAescbcKey256()
|
| /drivers/framework/tools/leagecy/hc-gen/src/ |
| D | hcs_decompiler.c | 22 struct HcsFile *input = HcsSourceQueueTop(); in HcsVerifyHbcFile() local
|
| /drivers/framework/model/audio/sapm/src/ |
| D | audio_sapm.c | 146 int32_t input; in AudioSapmGenericCheckPower() local 189 int32_t input; in AudioSapmAdcCheckPower() local
|
| /drivers/liteos/tzdriver/include/ |
| D | tzdriver_compat.h | 375 static inline void TeeSha256Update(TeeSha256Context *ctx, const unsigned char *input, size_t ilen) in TeeSha256Update()
|