Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/ohos5.0/base/request/request/services/tests/
H A Dsearch.rs37 let v = agent.search(current, current - 3000, State::Any, Action::Any, Mode::Any); in sdv_search_user() localVariable
39 let v = agent.search(current + 3000, current, State::Any, Action::Any, Mode::Any); in sdv_search_user() localVariable
41 let v = agent.search( in sdv_search_user() localVariable
49 let v = agent.search( in sdv_search_user() localVariable
57 let v = agent.search( in sdv_search_user() localVariable
66 let v = agent.search( in sdv_search_user() localVariable
/ohos5.0/base/telephony/sms_mms/services/sms/
H A Dsms_pdu_buffer.cpp157 bool SmsReadBuffer::ReadByte(uint8_t &v) in ReadByte()
176 bool SmsReadBuffer::PickOneByte(uint8_t &v) in PickOneByte()
186 bool SmsReadBuffer::PickOneByteFromIndex(uint16_t index, uint8_t &v) in PickOneByteFromIndex()
196 bool SmsReadBuffer::ReadWord(uint16_t &v) in ReadWord()
207 bool SmsReadBuffer::ReadBits(uint8_t &v, uint8_t l) in ReadBits()
253 bool SmsWriteBuffer::WriteByte(uint8_t v) in WriteByte()
266 bool SmsWriteBuffer::WriteWord(uint16_t v) in WriteWord()
277 bool SmsWriteBuffer::WriteBits(uint8_t v, uint8_t l) in WriteBits()
311 bool SmsWriteBuffer::InsertByte(uint8_t v, uint16_t index) in InsertByte()
331 bool SmsWriteBuffer::GetValueFromIndex(uint16_t index, uint8_t &v) in GetValueFromIndex()
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/osal/include/
H A Dosal_atomic_def.h28 #define OsalAtomicReadWrapper(v) atomic_read((const atomic_t *)(v)) argument
29 #define OsalAtomicSetWrapper(v, value) atomic_set((atomic_t *)(v), value) argument
30 #define OsalAtomicIncWrapper(v) atomic_inc((atomic_t *)(v)) argument
31 #define OsalAtomicIncRetWrapper(v) atomic_inc_return((atomic_t *)(v)) argument
32 #define OsalAtomicDecWrapper(v) atomic_dec((atomic_t *)(v)) argument
33 #define OsalAtomicDecRetWrapper(v) atomic_dec_return((atomic_t *)(v)) argument
/ohos5.0/base/security/appverify/interfaces/innerkits/appverify_lite/include/
H A Dapp_common.h37 #define P_NULL_RETURN_WTTH_LOG(v) \ argument
46 #define P_NULL_RETURN_RET_WTTH_LOG(v, ret) \ argument
55 #define P_NULL_RETURN_NULL_WTTH_LOG(v) \ argument
64 #define P_ERR_RETURN_WTTH_LOG(v) \ argument
73 #define P_NULL_GOTO_WTTH_LOG(v) \ argument
82 #define P_ERR_GOTO_WTTH_LOG(v) \ argument
/ohos5.0/drivers/hdf_core/interfaces/inner_api/osal/shared/
H A Dosal_atomic.h68 #define OsalAtomicRead(v) OsalAtomicReadWrapper(v) argument
79 #define OsalAtomicSet(v, counter) OsalAtomicSetWrapper(v, counter) argument
89 #define OsalAtomicInc(v) OsalAtomicIncWrapper(v) argument
101 #define OsalAtomicIncReturn(v) OsalAtomicIncRetWrapper(v) argument
111 #define OsalAtomicDec(v) OsalAtomicDecWrapper(v) argument
123 #define OsalAtomicDecReturn(v) OsalAtomicDecRetWrapper(v) argument
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/external/dummy/include/stub/
H A Dvcard_util.h47 static std::vector<std::string> v; in GetValues() local
52 static VCardParams v; in GetParams() local
73 static VCardVersion v; in GetVersion() local
84 static VCardVersion v; in Str2Version() local
89 static std::vector<VCardProperty> v; in Properties() local
104 static std::vector<uint8_t> v; in Build() local
109 static std::vector<uint8_t> v; in Build() local
114 std::vector<VCard> v; in Parse() local
119 std::vector<VCard> v; in Parse() local
/ohos5.0/base/request/request/frameworks/js/napi/src/
H A Dutf8_utils.cpp50 bool GetNextByte(const std::vector<uint8_t> &v, size_t &index, uint8_t &next) in GetNextByte()
63 bool Check2Bytes(const std::vector<uint8_t> &v, size_t &index) in Check2Bytes()
72 bool Check3Bytes(const std::vector<uint8_t> &v, const size_t &first, size_t &index) in Check3Bytes()
93 bool Check4Bytes(const std::vector<uint8_t> &v, const size_t &first, size_t &index) in Check4Bytes()
110 bool RunUtf8Validation(const std::vector<uint8_t> &v) in RunUtf8Validation()
/ohos5.0/drivers/hdf_core/adapter/khdf/liteos/osal/include/
H A Dosal_atomic_def.h41 #define OsalAtomicReadWrapper(v) LOS_AtomicRead((const Atomic *)&(v)->counter) argument
42 #define OsalAtomicSetWrapper(v, value) LOS_AtomicSet((Atomic *)&(v)->counter, value) argument
43 #define OsalAtomicIncWrapper(v) LOS_AtomicInc((Atomic *)&(v)->counter) argument
44 #define OsalAtomicIncRetWrapper(v) LOS_AtomicIncRet((Atomic *)&(v)->counter) argument
45 #define OsalAtomicDecWrapper(v) LOS_AtomicDec((Atomic *)&(v)->counter) argument
46 #define OsalAtomicDecRetWrapper(v) LOS_AtomicDecRet((Atomic *)&(v)->counter) argument
/ohos5.0/drivers/hdf_core/adapter/khdf/liteos_m/osal/include/
H A Dosal_atomic_def.h41 #define OsalAtomicReadWrapper(v) ((v)->counter) argument
42 #define OsalAtomicSetWrapper(v, value) (v)->counter = (value) argument
43 #define OsalAtomicIncWrapper(v) ((v)->counter)++ argument
44 #define OsalAtomicIncRetWrapper(v) (++((v)->counter)) argument
45 #define OsalAtomicDecWrapper(v) (((v)->counter)--) argument
46 #define OsalAtomicDecRetWrapper(v) (--((v)->counter)) argument
/ohos5.0/drivers/hdf_core/adapter/khdf/uniproton/osal/include/
H A Dosal_atomic_def.h41 #define OsalAtomicReadWrapper(v) ((v)->counter) argument
42 #define OsalAtomicSetWrapper(v, value) (v)->counter = (value) argument
43 #define OsalAtomicIncWrapper(v) ((v)->counter)++ argument
44 #define OsalAtomicIncRetWrapper(v) (++((v)->counter)) argument
45 #define OsalAtomicDecWrapper(v) (((v)->counter)--) argument
46 #define OsalAtomicDecRetWrapper(v) (--((v)->counter)) argument
/ohos5.0/drivers/hdf_core/interfaces/inner_api/osal/uhdf/
H A Dosal_atomic_def.h25 #define OsalAtomicReadWrapper(v) (*(volatile int *)&(v)->counter) argument
26 #define OsalAtomicSetWrapper(v, value) ((v)->counter = (value)) argument
27 #define OsalAtomicIncWrapper(v) __sync_fetch_and_add(&(v)->counter, 1) argument
28 #define OsalAtomicDecWrapper(v) __sync_sub_and_fetch(&(v)->counter, 1) argument
/ohos5.0/base/hiviewdfx/hievent_lite/interfaces/native/innerkits/
H A Dhiview_event.h187 #define HIEVENT_FAULT_REPORT(id, k, v) HiEventPrintf(HIEVENT_FAULT, (id), (k), (v)) argument
189 #define HIEVENT_FAULT_REPORT(id, k, v) argument
193 #define HIEVENT_UE_REPORT(id, k, v) HiEventPrintf(HIEVENT_UE, (id), (k), (v)) argument
195 #define HIEVENT_UE_REPORT(id, k, v) argument
199 #define HIEVENT_STAT_REPORT(id, k, v) HiEventPrintf(HIEVENT_STAT, (id), (k), (v)) argument
201 #define HIEVENT_STAT_REPORT(id, k, v) argument
213 #define HIEVENT_PUT_INT_VALUE(pEvent, k, v) HiEventPutInteger(pEvent, k, v) argument
217 #define HIEVENT_PUT_INT_VALUE(pEvent, k, v) argument
/ohos5.0/base/update/updater/services/script/script_instruction/
H A Dscript_basicinstruction.cpp71 int32_t v; in Execute() local
81 float v; in Execute() local
91 std::string v; in Execute() local
136 int32_t v; in Execute() local
144 float v; in Execute() local
152 std::string v; in Execute() local
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/detail/
H A Darray_property.h60 AnyReturnValue SetAnyAt(IndexType index, const IAny& v) in SetAnyAt()
70 AnyReturnValue AddAny(const IAny& v) in AddAny()
74 AnyReturnValue InsertAnyAt(IndexType index, const IAny& v) in InsertAnyAt()
119 bool SetValueAt(IndexType index, const Type& v) in SetValueAt()
130 bool AddValue(const Type& v) in AddValue()
134 bool InsertValueAt(IndexType index, const Type& v) in InsertValueAt()
146 BASE_NS::vector<ValueType> v; in GetDefaultValue() local
189 IndexType FindFirstValueOf(const Type& v) const in FindFirstValueOf()
/ohos5.0/foundation/resourceschedule/ffrt/src/util/
H A Dtask_deleter.h34 auto v = rc.fetch_add(1); in IncDeleteRef() local
40 auto v = rc.fetch_sub(1); in DecDeleteRef() local
/ohos5.0/foundation/arkui/napi/interfaces/inner_api/cjffi/ark_interop/
H A Dark_interop_string.cpp41 auto v = BIT_CAST(value, JSValueRef); in ARKTS_IsString() local
55 auto v = BIT_CAST(value, Local<StringRef>); in ARKTS_GetValueUtf8Size() local
63 auto v = BIT_CAST(value, Local<StringRef>); in ARKTS_GetValueUtf8() local
72 auto v = BIT_CAST(value, Local<StringRef>); in ARKTS_GetValueCString() local
/ohos5.0/base/telephony/sms_mms/services/sms/cdma/
H A Dcdma_sms_sub_parameter.cpp130 uint8_t v = 0; in Decode() local
244 uint8_t v = 0; in Decode() local
285 uint8_t v = 0; in Decode() local
562 uint8_t v = 0; in Decode() local
647 uint8_t v = 0; in DecodeAscii7Bit() local
726 uint8_t v = 0; in Decode8BitData() local
769 uint8_t v = 0; in Decode() local
801 uint8_t v = 0; in DecodeData() local
828 uint8_t v = 0; in DecodeType0Data() local
994 uint8_t v = 0; in Decode() local
[all …]
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/examples/
H A Dsync_https_outside.rs20 let mut v = vec![]; in main() localVariable
32 let v = "some certs".as_bytes(); in req() localVariable
H A Dasync_https_outside.rs24 let mut v = vec![]; in main() localVariable
38 let v = "some certs".as_bytes(); in req() localVariable
/ohos5.0/foundation/multimedia/image_effect/interfaces/inner_api/native/utils/
H A Dformat_helper.h52 int v = ((128 * r - 116 * g - 12 * b) >> 8) + 128; in RGBToV() local
56 static inline uint8_t YuvToR(uint8_t y, uint8_t u, uint8_t v) in YuvToR()
62 static inline uint8_t YuvToG(uint8_t y, uint8_t u, uint8_t v) in YuvToG()
68 static inline uint8_t YuvToB(uint8_t y, uint8_t u, uint8_t v) in YuvToB()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dregister_value_serializers.cpp35 static ISerNode::Ptr ExportVector(IExportFunctions& f, const T* v, size_t size) in ExportVector()
59 auto vecExport = [](IExportFunctions& f, const auto& v) { in RegisterValueSerializers()
67 auto matExport = [](IExportFunctions& f, const auto& v) { in RegisterValueSerializers()
75 auto enumExport = [](IExportFunctions& f, const auto& v) { return EnumExport(f, v); }; in RegisterValueSerializers()
96 [](IExportFunctions& f, const auto& v) { in RegisterValueSerializers()
109 …data, [](IExportFunctions& f, const auto& v) { return f.ExportToNode(Any<int64_t>(v.ToMicroseconds… in RegisterValueSerializers()
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_config.cpp124 std::vector<int> v = ReadIntNumbersConfigInfo(curNodePtr); in ReadConfig() local
129 std::vector<float> v = ReadFloatNumbersConfigInfo(curNodePtr, true); in ReadConfig() local
134 std::vector<float> v = ReadFloatNumbersConfigInfo(curNodePtr, false); in ReadConfig() local
139 std::string v = ReadStringConfigInfo(curNodePtr); in ReadConfig() local
144 std::vector<std::string> v = ReadStringsConfigInfo(curNodePtr); in ReadConfig() local
149 std::map<std::string, ConfigItem> v; in ReadConfig() local
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dwindow_scene_config.cpp145 std::vector<int> v = ReadIntNumbersConfigInfo(curNodePtr); in ReadConfig() local
150 std::vector<float> v = ReadFloatNumbersConfigInfo(curNodePtr, false); in ReadConfig() local
155 std::vector<float> v = ReadFloatNumbersConfigInfo(curNodePtr, true); in ReadConfig() local
160 std::map<std::string, ConfigItem> v; in ReadConfig() local
166 std::string v = ReadStringConfigInfo(curNodePtr); in ReadConfig() local
171 std::vector<std::string> v = ReadStringsConfigInfo(curNodePtr); in ReadConfig() local
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/serialization/backend/
H A Djson_input.cpp54 if (const auto& v = value.find(name)) { in ReadString() local
150 if (auto v = value.find("version")) { in ReadMetadata() local
161 if (auto v = value.find("exporter-version")) { in ReadMetadata() local
172 if (auto v = value.find("$meta")) { in ImportRootObject() local
184 } else if (auto v = value.find("$root")) { in ImportRootObject() local
/ohos5.0/base/security/asset/frameworks/ipc/src/
H A Dlib.rs91 let v = parcel.read::<bool>().map_err(ipc_err_handle)?; in deserialize_map() localVariable
95 let v = parcel.read::<u32>().map_err(ipc_err_handle)?; in deserialize_map() localVariable
99 let v = parcel.read::<Vec<u8>>().map_err(ipc_err_handle)?; in deserialize_map() localVariable

12345678910>>...12