Home
last modified time | relevance | path

Searched refs:raw (Results 1 – 21 of 21) sorted by relevance

/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/epoll_manager/
Dffi.rs51 pub unsafe extern "C" fn StreamSocketDelete(raw: *mut EpollManager) { in StreamSocketDelete()
52 if !raw.is_null() { in StreamSocketDelete()
53 drop(Box::from_raw(raw)); in StreamSocketDelete()
/base/sensors/sensor/utils/ipc/include/
Drust_binding.h31 void StreamSocketDelete(RustStreamSocket* raw);
36 void StreamSessionDelete(RustStreamSession* raw);
49 void StreamBufferDelete(RustStreamBuffer* raw);
/base/global/resource_management/test/resource/data/all/assets/entry/resources/rawfile/
Dtest_rawfile.txt1 for raw file test
/base/global/resource_management/test/resource/src/all/resources/rawfile/
Dtest_rawfile.txt1 for raw file test
/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/stream_session/
Dffi.rs48 pub unsafe extern "C" fn StreamSessionDelete(raw: *mut StreamSession) { in StreamSessionDelete()
49 if !raw.is_null() { in StreamSessionDelete()
50 drop(Box::from_raw(raw)); in StreamSessionDelete()
/base/useriam/user_auth_framework/test/unittest/services/src/
Dattributes_test.cpp306 …const std::vector<uint8_t> raw = {161, 134, 1, 0, 1, 0, 0, 0, 1, 164, 134, 1, 0, 1, 0, 0, 0, 0, 16… variable
312 Attributes attrs(raw);
353 …const std::vector<uint8_t> raw = {161, 134, 1, 0, 1, 0, 0, 0, 1, 164, 134, 1, 0, 1, 0, 0, 0, 0, 16… variable
375 EXPECT_THAT(attrs4.Serialize(), ElementsAreArray(raw));
380 …const std::vector<uint8_t> raw = {0, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 20, 0, 0, 0, 1, 0, 0, 0, … variable
386 Attributes attrs(raw);
457 …const std::vector<uint8_t> raw = {0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0… variable
462 Attributes attrs1(raw);
464 EXPECT_THAT(attrs1.Serialize(), ElementsAreArray(raw));
469 EXPECT_THAT(attrs2.Serialize(), ElementsAreArray(raw));
/base/telephony/sms_mms/services/sms/
Dgsm_cb_codec.cpp87 void GsmCbCodec::SetCbMessageRaw(std::string &raw) in SetCbMessageRaw() argument
89 messageRaw_ = raw; in SetCbMessageRaw()
187 void GsmCbCodec::ConvertToUTF8(const std::string &raw, std::string &message) const in ConvertToUTF8() argument
194 message.assign(raw); in ConvertToUTF8()
199 const uint8_t *src = reinterpret_cast<const uint8_t *>(raw.data()); in ConvertToUTF8()
201 …codeSize = TextCoder::Instance().Gsm7bitToUtf8(outBuf, sizeof(outBuf), src, raw.length(), langInfo… in ConvertToUTF8()
203 codeSize = TextCoder::Instance().Ucs2ToUtf8(outBuf, sizeof(outBuf), src, raw.length()); in ConvertToUTF8()
206 message.assign(raw); in ConvertToUTF8()
/base/hiviewdfx/faultloggerd/interfaces/rust/stacktrace/
Dlib.rs19 use std::os::raw::{c_char, c_int, c_uint};
/base/hiviewdfx/faultloggerd/interfaces/rust/rustc_demangle/
Dlib.rs23 use std::os::raw::{c_char};
/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/stream_buffer/
Dffi.rs48 pub unsafe extern "C" fn StreamBufferDelete(raw: *mut StreamBuffer) { in StreamBufferDelete()
49 if !raw.is_null() { in StreamBufferDelete()
50 drop(Box::from_raw(raw)); in StreamBufferDelete()
/base/telephony/sms_mms/test/gtest/
Dzero_branch_cb_test.cpp100 std::string raw = "qwe"; variable
102 cbCodec->ConvertToUTF8(raw, message);
105 cbCodec->ConvertToUTF8(raw, message);
107 cbCodec->ConvertToUTF8(raw, message);
109 cbCodec->ConvertToUTF8(raw, message);
112 cbCodec->ConvertToUTF8(raw, message);
/base/telephony/sms_mms/test/fuzztest/setgetcbconfig_fuzzer/
Dsetgetcbconfig_fuzzer.cpp154 std::string raw(reinterpret_cast<const char *>(data), size); in UpdataCBMessage()
156 cbMessage->ConvertToUTF8(raw, message); in UpdataCBMessage()
/base/telephony/sms_mms/services/sms/include/
Dgsm_cb_codec.h236 void ConvertToUTF8(const std::string &raw, std::string &message) const;
266 void SetCbMessageRaw(std::string &raw);
/base/hiviewdfx/faultloggerd/interfaces/rust/panic_handler/
Dlib.rs23 use std::os::raw::{c_char};
/base/useriam/pin_auth/
DREADME.md19 …a transmission: The raw PIN data is not transmitted across devices. After a user PIN is entered in…
/base/useriam/user_auth_framework/interfaces/inner_api/
Dattributes.h129 explicit Attributes(const std::vector<uint8_t> &raw);
/base/useriam/user_auth_framework/frameworks/native/common/attributes/src/
Dattributes.cpp32 explicit Impl(const std::vector<uint8_t> &raw);
99 Attributes::Impl::Impl(const std::vector<uint8_t> &raw) in Impl() argument
103 const uint8_t *curr = &raw.front(); in Impl()
104 const uint8_t *end = &raw.back() + sizeof(uint8_t); in Impl()
866 …ttributes::Attributes(const std::vector<uint8_t> &raw) : impl_(new (std::nothrow) Attributes::Impl… in Attributes() argument
/base/update/updater/
DREADME.md48 …and records of resumable data transfer upon power-off. This partition is a raw partition and its s…
/base/security/appverify/interfaces/innerkits/appverify_lite/src/
Dmbedtls_pkcs7.c196 unsigned char *raw = *p; in ParseSignerAuthAttr() local
205 size_t tlLen = *p - raw; in ParseSignerAuthAttr()
208 signer->authAttrRaw.p = raw; in ParseSignerAuthAttr()
/base/update/updater/test/unittest/test_data/diffpatch/
DPatchGztest_new.gz
DPatchGztest_old.gz1[==========] Running 25 tests from 7 test ...