Home
last modified time | relevance | path

Searched defs:self (Results 976 – 1000 of 2127) sorted by relevance

1...<<31323334353637383940>>...86

/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dwpa_common_cmd.c185 int32_t WpaInterfaceSetNetwork(struct IWpaInterface *self, const char *ifName, in WpaInterfaceSetNetwork()
280 int32_t WpaInterfaceListNetworks(struct IWpaInterface *self, const char *ifName, in WpaInterfaceListNetworks()
324 int32_t WpaInterfaceSelectNetwork(struct IWpaInterface *self, const char *ifName, in WpaInterfaceSelectNetwork()
377 int32_t WpaInterfaceReconnect(struct IWpaInterface *self, const char *ifName) in WpaInterfaceReconnect()
403 int32_t WpaInterfaceDisconnect(struct IWpaInterface *self, const char *ifName) in WpaInterfaceDisconnect()
582 int32_t WpaInterfaceSaveConfig(struct IWpaInterface *self, const char *ifName) in WpaInterfaceSaveConfig()
654 int32_t WpaInterfaceWpsPinMode(struct IWpaInterface *self, const char *ifName, in WpaInterfaceWpsPinMode()
689 int32_t WpaInterfaceWpsCancel(struct IWpaInterface *self, const char *ifName) in WpaInterfaceWpsCancel()
745 int32_t WpaInterfaceGetNetwork(struct IWpaInterface *self, const char *ifName, in WpaInterfaceGetNetwork()
1085 static int32_t HdfWpaAddRemoteObj(struct IWpaCallback *self, const char *ifName) in HdfWpaAddRemoteObj()
[all …]
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/task/
H A Draw.rs128 pub(crate) unsafe fn get_result(self, res: *mut ()) { in get_result() argument
133 pub(crate) unsafe fn cancel(self) { in cancel() argument
143 pub(crate) fn drop_ref(self) { in drop_ref() argument
150 pub(crate) fn drop_join_handle(self) { in drop_join_handle() argument
165 pub(super) fn shutdown(self) { in shutdown() argument
209 pub(crate) fn get_task_ctx(&self) { in get_task_ctx()
217 fn turning_to_executed(&self) { in turning_to_executed()
224 pub(crate) fn turning_to_used_data(&self) { in turning_to_used_data()
247 pub(crate) fn poll(&self, context: &mut Context) -> Poll<T::Output> { in poll()
264 pub(crate) fn send_result(&self, output: Result<T::Output, ScheduleError>) { in send_result()
[all …]
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/request/uri/
H A Dpercent_encoding.rs70 fn parse_scheme<'a>(&mut self, mut origin: UrlChars<'a>) -> Result<UrlChars<'a>, HttpError> { in parse_scheme()
86 fn parse_double_slash<'a>(&mut self, origin: UrlChars<'a>) -> Result<UrlChars<'a>, HttpError> { in parse_double_slash()
106 fn parse_userinfo<'a>(&mut self, mut origin: UrlChars<'a>) -> Result<UrlChars<'a>, HttpError> { in parse_userinfo()
151 fn parse_authority<'a>(&mut self, mut origin: UrlChars<'a>) -> Result<UrlChars<'a>, HttpError> { in parse_authority()
172 fn parse_path<'a>(&mut self, mut origin: UrlChars<'a>) -> Result<UrlChars<'a>, HttpError> { in parse_path()
198 fn parse_query_and_fragment(&mut self, mut origin: UrlChars) -> Result<(), HttpError> { in parse_query_and_fragment()
218 fn parse_query<'a>(&mut self, mut origin: UrlChars<'a>) -> Result<UrlChars<'a>, HttpError> { in parse_query()
232 fn parse_fragment(&mut self, mut origin: UrlChars) -> Result<(), HttpError> { in parse_fragment()
250 pub(crate) fn push(&mut self, ch: char) { in push()
256 pub(crate) fn percent_encoding_push(&mut self, u8_ch: Utf8Char, char_set: &[u8]) { in percent_encoding_push()
[all …]
/ohos5.0/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/kdf/src/
H A Dhkdf_openssl.c77 static void EngineDestroyKdf(HcfObjectBase *self) in EngineDestroyKdf()
128 static int GetHkdfMode(OpensslHkdfSpiImpl *self) in GetHkdfMode()
142 static bool GetHkdfInfoFromSpec(OpensslHkdfSpiImpl *self, HcfHkdfData *data, HcfHkdfParamsSpec *par… in GetHkdfInfoFromSpec()
163 static bool GetHkdfSaltFromSpec(OpensslHkdfSpiImpl *self, HcfHkdfData *data, HcfHkdfParamsSpec *par… in GetHkdfSaltFromSpec()
184 static HcfResult InitHkdfData(OpensslHkdfSpiImpl *self, HcfHkdfParamsSpec *params) in InitHkdfData()
218 static char *SwitchMd(OpensslHkdfSpiImpl *self) in SwitchMd()
242 static HcfResult OpensslHkdf(OpensslHkdfSpiImpl *self, HcfBlob *output) in OpensslHkdf()
281 static HcfResult EngineGenerateSecret(HcfKdfSpi *self, HcfKdfParamsSpec *paramsSpec) in EngineGenerateSecret()
/ohos5.0/commonlibrary/rust/ylong_json/src/value/array/
H A Dvec.rs96 pub fn push(&mut self, value: JsonValue) { in push()
153 pub fn get(&self, index: usize) -> Option<&JsonValue> { in get()
168 pub fn get_mut(&mut self, index: usize) -> Option<&mut JsonValue> { in get_mut()
218 pub fn remove(&mut self, index: usize) -> Option<JsonValue> { in remove()
243 fn eq(&self, other: &Self) -> bool { in eq()
257 fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result { in fmt()
270 fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result { in fmt()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/
H A Dmod.rs122 pub fn send(&self, value: T) -> Result<(), SendError<T>> { in send()
155 pub fn is_same(&self, other: &Self) -> bool { in is_same()
191 fn drop(&mut self) { in drop()
293 pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv()
349 pub async fn recv_timeout(&mut self, time: Duration) -> Result<T, RecvTimeoutError> { in recv_timeout()
391 pub fn close(&mut self) { in close()
397 fn drop(&mut self) { in drop()
/aosp12/system/security/keystore2/src/
H A Dboot_level_keys.rs149 pub fn level_accessible(&self, boot_level: usize) -> bool { in level_accessible()
158 fn get_hkdf_key(&mut self, boot_level: usize) -> Result<Option<&ZVec>> { in get_hkdf_key()
182 pub fn advance_boot_level(&mut self, new_boot_level: usize) -> Result<()> { in advance_boot_level()
214 pub fn finish(&mut self) { in finish()
219 &mut self, in expand_key()
232 pub fn aes_key(&mut self, boot_level: usize) -> Result<Option<ZVec>> { in aes_key()
H A Dauthorization.rs120 fn add_auth_token(&self, auth_token: &HardwareAuthToken) -> Result<()> { in add_auth_token()
129 &self, in on_lock_screen_event()
211 &self, in get_auth_tokens_for_credstore()
236 fn addAuthToken(&self, auth_token: &HardwareAuthToken) -> BinderResult<()> { in addAuthToken()
242 &self, in onLockScreenEvent()
264 &self, in getAuthTokensForCredStore()
/ohos5.0/base/startup/init/services/modules/seccomp/scripts/tools/
H A Dlibc_static_analysis.py26 def __init__(self, arch, addr, func_name, nr): argument
34 def merge_nr(self, nr): argument
37 def update_func_name(self, func_name): argument
40 def update_addr(self, addr): argument
43 def update_use_function(self, new_function): argument
46 def print_info(self, name_nr_table_dict): argument
/ohos5.0/foundation/ai/ai_engine/services/server/plugin_manager/
H A Dget_config_ini.py62 def optionxform(self, optionstr): argument
94 def __init__(self): argument
97 def get_files_in_folder(self, build_folder, plugin_list): argument
123 def get_config_ini(self, file_path_list, board_name): argument
153 def copy_config_ini(self, build_folder, out_folder, board_name, argument
/ohos5.0/base/security/crypto_framework/frameworks/crypto_operation/
H A Dmd.c71 static HcfResult Update(HcfMd *self, HcfBlob *input) in Update()
85 static HcfResult DoFinal(HcfMd *self, HcfBlob *output) in DoFinal()
99 static uint32_t GetMdLength(HcfMd *self) in GetMdLength()
113 static const char *GetAlgoName(HcfMd *self) in GetAlgoName()
126 static void MdDestroy(HcfObjectBase *self) in MdDestroy()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/
H A Dzombie_manager.rs45 pub(crate) fn push(&self, child: StdChild) { in push()
49 pub(crate) fn release_zombie(&self) { in release_zombie()
58 fn release_zombie_when_some_receiver(&self, child_signal: &mut Receiver<()>) { in release_zombie_when_some_receiver()
64 fn release_zombile_when_no_receiver(&self, guard: &mut MutexGuard<Option<Receiver<()>>>) { in release_zombile_when_no_receiver()
/aosp12/art/runtime/base/
H A Dmessage_queue.h102 Thread* self = Thread::Current(); in SendMessage() local
111 Thread* self = Thread::Current(); in SetTimeout() local
120 Thread* self = Thread::Current(); in ReceiveMessage() local
/aosp12/art/runtime/arch/
H A Dstub_test.cc418 Thread* self = Thread::Current(); in TEST_F() local
458 Thread* self = Thread::Current(); in TEST_F() local
532 Thread* self = Thread::Current(); in TestUnlockObject() local
687 Thread* self = Thread::Current(); in TEST_F() local
791 Thread* self = Thread::Current(); in TEST_F() local
908 Thread* self = Thread::Current(); in TEST_F() local
969 Thread* self = Thread::Current(); in TEST_F() local
1644 Thread* self = Thread::Current(); in TEST_F() local
1656 Thread* self = Thread::Current(); in TEST_F() local
1668 Thread* self = Thread::Current(); in TEST_F() local
[all …]
/aosp12/system/bt/gd/rust/linux/mgmt/src/bin/btmanagerd/
H A Dstate_machine.rs63 &self, in start_bluetooth()
78 &self, in register_state_change_observer()
86 &self, in unregister_state_change_observer()
199 fn start(&mut self, hci_interface: String); in start()
200 fn stop(&mut self, hci_interface: String); in stop()
214 fn start(&mut self, hci_interface: String) { in start()
223 fn stop(&mut self, hci_interface: String) { in stop()
257 fn stop(&mut self, hci_interface: String) { in stop()
420 fn expect_start(&mut self) { in expect_start()
424 fn expect_stop(&mut self) { in expect_stop()
[all …]
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/decode/
H A Dmulti.rs116 &mut self, in decode()
153 &mut self, in unknown_decode()
172 fn push_new_unknown_stage(&mut self) { in push_new_unknown_stage()
198 &mut self, in part_decode()
231 &mut self, in middle_or_end_boundary_decode()
257 &mut self, in first_boundary_decode()
269 &mut self, in outermost_first_boundary_decode()
296 &mut self, in inner_first_boundary_decode()
450 &mut self, in inner_first_boundary()
479 fn when_is_first_boundary(&mut self) { in when_is_first_boundary()
[all …]
/aosp12/art/runtime/gc/collector/
H A Dconcurrent_copying-inl.h36 Thread* const self, in MarkUnevacFromSpaceRegion()
95 inline mirror::Object* ConcurrentCopying::MarkImmuneSpace(Thread* const self, in MarkImmuneSpace()
127 inline mirror::Object* ConcurrentCopying::Mark(Thread* const self, in Mark()
201 Thread* const self = Thread::Current(); in MarkFromReadBarrier() local
/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/ndk/src/
H A Doh_preferences_value.cpp69 auto self = GetSelf(object); in OH_PreferencesValue_GetValueType() local
86 auto self = GetSelf(object); in OH_PreferencesValue_GetInt() local
103 auto self = GetSelf(object); in OH_PreferencesValue_GetBool() local
120 auto self = GetSelf(object); in OH_PreferencesValue_GetString() local
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_io/src/
H A Dpoll.rs37 pub fn poll(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in poll()
42 pub fn register<S>(&self, source: &mut S, token: Token, interests: Interest) -> io::Result<()> in register()
51 pub fn deregister<S>(&self, source: &mut S) -> io::Result<()> in deregister()
65 fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { in fmt()
/ohos5.0/base/security/crypto_framework/plugin/openssl_plugin/key/asy_key_generator/src/
H A Drsa_asy_key_generator_openssl.c256 static void DestroyPubKey(HcfObjectBase *self) in DestroyPubKey()
272 static void DestroyPriKey(HcfObjectBase *self) in DestroyPriKey()
289 static void DestroyKeyPair(HcfObjectBase *self) in DestroyKeyPair()
446 static HcfResult GetPubKeyEncoded(HcfKey *self, HcfBlob *returnBlob) in GetPubKeyEncoded()
563 static HcfResult GetPriKeyEncoded(HcfKey *self, HcfBlob *returnBlob) in GetPriKeyEncoded()
691 static const char *GetPubKeyFormat(HcfKey *self) in GetPubKeyFormat()
703 static const char *GetPriKeyFormat(HcfKey *self) in GetPriKeyFormat()
715 static const char *GetPriKeyAlgorithm(HcfKey *self) in GetPriKeyAlgorithm()
727 static const char *GetPubKeyAlgorithm(HcfKey *self) in GetPubKeyAlgorithm()
739 static void ClearPriKeyMem(HcfPriKey *self) in ClearPriKeyMem()
[all …]
/aosp12/art/runtime/
H A Dread_barrier-inl.h42 Thread* const self = Thread::Current(); in Barrier() local
113 Thread* const self = Thread::Current(); in BarrierForRoot() local
120 Thread* self = Thread::Current(); in BarrierForRoot() local
130 Thread* self = Thread::Current(); in BarrierForRoot() local
161 Thread* self = Thread::Current(); in BarrierForRoot() local
171 Thread* self = Thread::Current(); in BarrierForRoot() local
/aosp12/build/soong/cc/ndkstubgen/
H A D__init__.py31 def __init__(self, src_file: TextIO, version_script: TextIO, arch: Arch, argument
40 def write(self, versions: Iterable[Version]) -> None: argument
45 def write_version(self, version: Version) -> None: argument
/aosp12/packages/services/Car/tools/emulator/
H A Ddiagnostic_injector.py52 def __init__(self, device): argument
69 def chat(self, request): argument
73 def inject(self, file): argument
/aosp12/packages/modules/Virtualization/virtmanager/src/
H A Daidl.rs52 &self, in startVm()
113 fn debugHoldVmRef(&self, vmref: &Strong<dyn IVirtualMachine>) -> binder::Result<()> { in debugHoldVmRef()
126 fn debugDropVmRef(&self, cid: i32) -> binder::Result<Option<Strong<dyn IVirtualMachine>>> { in debugDropVmRef()
168 &self, in registerCallback()
178 fn drop(&mut self) { in drop()
191 pub fn callback_on_died(&self, cid: Cid) { in callback_on_died()
201 fn add(&self, callback: Strong<dyn IVirtualMachineCallback>) { in add()
231 fn add_vm(&mut self, vm: Weak<VmInstance>) { in add_vm()
240 fn debug_hold_vm(&mut self, vm: Strong<dyn IVirtualMachine>) { in debug_hold_vm()
245 fn debug_drop_vm(&mut self, cid: i32) -> Option<Strong<dyn IVirtualMachine>> { in debug_drop_vm()
/aosp12/frameworks/native/libs/binder/rust/src/
H A Dparcel.rs104 pub fn mark_sensitive(&mut self) { in mark_sensitive()
112 pub fn write<S: Serialize + ?Sized>(&mut self, parcelable: &S) -> Result<()> { in write()
120 pub fn write_slice_size<T>(&mut self, slice: Option<&[T]>) -> Result<()> { in write_slice_size()
156 pub fn sized_write<F>(&mut self, f: F) -> Result<()> in sized_write()
199 pub unsafe fn set_data_position(&self, pos: i32) -> Result<()> { in set_data_position()
209 pub fn write<S: Serialize + ?Sized>(&self, parcelable: &S) -> Result<()> { in write()
227 pub fn resize_out_vec<D: Default + Deserialize>(&self, out_vec: &mut Vec<D>) -> Result<()> { in resize_out_vec()
247 pub fn resize_nullable_out_vec<D: Default + Deserialize>( in resize_nullable_out_vec()
269 pub(crate) fn write_binder(&mut self, binder: Option<&SpIBinder>) -> Result<()> { in write_binder()
309 fn drop(&mut self) { in drop()

1...<<31323334353637383940>>...86