Home
last modified time | relevance | path

Searched defs:bool (Results 1 – 25 of 766) sorted by relevance

12345678910>>...31

/aosp12/system/bt/gd/rust/shim/src/
H A Dbridge.rs39 fn controller_supports_role_switch(c: &Controller) -> bool; in controller_supports_role_switch()
46 fn controller_supports_sco(c: &Controller) -> bool; in controller_supports_sco()
47 fn controller_supports_hv2_packets(c: &Controller) -> bool; in controller_supports_hv2_packets()
48 fn controller_supports_hv3_packets(c: &Controller) -> bool; in controller_supports_hv3_packets()
49 fn controller_supports_ev3_packets(c: &Controller) -> bool; in controller_supports_ev3_packets()
55 fn controller_supports_hold_mode(c: &Controller) -> bool; in controller_supports_hold_mode()
56 fn controller_supports_sniff_mode(c: &Controller) -> bool; in controller_supports_sniff_mode()
57 fn controller_supports_park_mode(c: &Controller) -> bool; in controller_supports_park_mode()
61 fn controller_supports_ble(c: &Controller) -> bool; in controller_supports_ble()
63 fn controller_supports_privacy(c: &Controller) -> bool; in controller_supports_privacy()
[all …]
/ohos5.0/commonlibrary/c_utils/base/src/rust/
H A Dfile_ex.rs24 pub fn RustLoadStringFromFile(filePath: &String, content: &mut String) -> bool; in RustLoadStringFromFile()
27 pub fn RustSaveStringToFile(filePath: &String, content: &String, truncated: bool) -> bool; in RustSaveStringToFile()
30 pub fn RustLoadStringFromFd(fd: i32, content: &mut String) -> bool; in RustLoadStringFromFd()
33 pub fn RustSaveStringToFd(fd: i32, content: &String) -> bool; in RustSaveStringToFd()
36 pub fn RustLoadBufferFromFile(filePath: &String, content: &mut Vec<c_char>) -> bool; in RustLoadBufferFromFile()
42 truncated: bool, in RustSaveBufferToFile()
43 ) -> bool; in RustSaveBufferToFile()
46 pub fn RustFileExists(fileName: &String) -> bool; in RustFileExists()
52 caseSensitive: bool, in RustStringExistsInFile()
53 ) -> bool; in RustStringExistsInFile()
H A Ddirectory_ex.rs75 pub fn IsEmptyFolder(path: &CxxString) -> bool; in IsEmptyFolder()
79 pub fn ForceCreateDirectory(path: &CxxString) -> bool; in ForceCreateDirectory()
82 pub fn ForceRemoveDirectory(path: &CxxString) -> bool; in ForceRemoveDirectory()
85 pub fn RemoveFile(fileName: &CxxString) -> bool; in RemoveFile()
91 pub fn ChangeModeFile(fileName: &CxxString, mode: &u32) -> bool; in ChangeModeFile()
95 pub fn ChangeModeDirectory(path: &CxxString, mode: &u32) -> bool; in ChangeModeDirectory()
98 pub fn RustPathToRealPath(path: &String, realPath: &mut String) -> bool; in RustPathToRealPath()
H A Dashmem.rs66 pub fn MapAshmem(self: &Ashmem, mapType: i32) -> bool; in MapAshmem()
69 pub fn MapReadAndWriteAshmem(self: &Ashmem) -> bool; in MapReadAndWriteAshmem()
72 pub fn MapReadOnlyAshmem(self: &Ashmem) -> bool; in MapReadOnlyAshmem()
78 pub fn SetProtection(self: &Ashmem, protType: i32) -> bool; in SetProtection()
95 ) -> bool; in WriteToAshmem()
136 pub fn set_protection(&self, prot_type: i32) -> bool { in set_protection()
141 pub fn map_ashmem(&self, prot_type: i32) -> bool { in map_ashmem()
146 pub fn map_read_write_ashmem(&self) -> bool { in map_read_write_ashmem()
151 pub fn map_read_only_ashmem(&self) -> bool { in map_read_only_ashmem()
168 pub unsafe fn write_to_ashmem(&self, data: *const c_char, size: i32, offset: i32) -> bool { in write_to_ashmem()
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/rust/src/parcel/
H A Dwrapper.rs61 ) -> bool; in WriteRemoteObject()
87 fn ReadInt8(self: Pin<&mut Parcel>, v: &mut i8) -> bool; in ReadInt8()
91 fn ReadUint8(self: Pin<&mut Parcel>, v: &mut u8) -> bool; in ReadUint8()
158 fn write_process(&self, parcel: Pin<&mut Parcel>) -> bool; in write_process()
167 impl Process for bool { implementation
168 fn write_process(&self, parcel: Pin<&mut Parcel>) -> bool { in write_process()
194 fn write_process(&self, parcel: Pin<&mut Parcel>) -> bool { in write_process()
220 fn write_process(&self, parcel: Pin<&mut Parcel>) -> bool { in write_process()
245 fn write_process(&self, parcel: Pin<&mut Parcel>) -> bool { in write_process()
271 fn write_process(&self, parcel: Pin<&mut Parcel>) -> bool { in write_process()
[all …]
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/
H A Devents.rs22 fn is_readable(&self) -> bool; in is_readable()
25 fn is_writable(&self) -> bool; in is_writable()
28 fn is_read_closed(&self) -> bool; in is_read_closed()
31 fn is_write_closed(&self) -> bool; in is_write_closed()
34 fn is_error(&self) -> bool; in is_error()
/aosp12/build/soong/android/
H A Dexpand.go30 func ExpandNinjaEscaped(s string, mapping func(string) (string, bool, error)) (string, error) { argument
44 func expand(s string, ninjaEscape bool, mapping func(string) (string, bool, error)) (string, error)…
69 func getMapping(s string, mapping func(string) (string, bool, error)) (string, bool, int, error) { argument
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/
H A Dmimetype.rs164 pub fn is_application(&self) -> bool { in is_application()
178 pub fn is_audio(&self) -> bool { in is_audio()
192 pub fn is_font(&self) -> bool { in is_font()
206 pub fn is_image(&self) -> bool { in is_image()
220 pub fn is_message(&self) -> bool { in is_message()
234 pub fn is_model(&self) -> bool { in is_model()
248 pub fn is_multipart(&self) -> bool { in is_multipart()
262 pub fn is_text(&self) -> bool { in is_text()
276 pub fn is_video(&self) -> bool { in is_video()
290 pub fn is_xnew(&self) -> bool { in is_xnew()
[all …]
/ohos5.0/build/scripts/
H A Dcopy_ex.py47 follow_all_symlinks: bool = False,
48 follow_outside_symlinks: bool = False) -> str:
108 follow_all_symlinks: bool = False,
109 follow_outside_symlinks: bool = False):
H A Dbuild_js_assets.py65 def make_my_env(options, js2abc: bool) -> dict:
86 def make_manifest_data(config: dict, options, js2abc: bool, asset_index: int, assets_cnt: int, src_…
115 def build_ace(cmd: str, options, js2abc: bool, loader_home: str, assets_dir: str, assets_name: str):
179 def enable_compile_cache(asset_index: int, assets_cnt: int, env: dict, use_compile_cache: bool):
/ohos5.0/base/sensors/sensor/rust/utils/socket_ipc_rust_ffi/src/stream_buffer/
H A Dffi.rs124 …safe extern "C" fn StreamBufferWrite(object: *mut StreamBuffer, buf: *const StreamBuffer) -> bool { in StreamBufferWrite()
143 …nsafe extern "C" fn StreamBufferRead(object: *const StreamBuffer, buf: *mut StreamBuffer) -> bool { in StreamBufferRead()
162 pub unsafe extern "C" fn StreamBufferChkRWError(object: *const StreamBuffer) -> bool { in StreamBufferChkRWError()
191 … "C" fn StreamBufferWriteChar(object: *mut StreamBuffer, buf: *const c_char, size: usize) -> bool { in StreamBufferWriteChar()
206 pub unsafe extern "C" fn StreamBufferCheckWrite(object: *mut StreamBuffer, size: usize) -> bool { in StreamBufferCheckWrite()
237 …n "C" fn StreamBufferReadChar(object: *mut StreamBuffer, buf: *const c_char, size: usize) -> bool { in StreamBufferReadChar()
252 …C" fn CircleStreamBufferWrite(object: *mut StreamBuffer, buf: *const c_char, size: usize) -> bool { in CircleStreamBufferWrite()
/ohos5.0/base/security/asset/services/crypto_manager/src/
H A Dsecret_key.rs69 require_password_set: bool, in calculate_key_alias()
70 standard: bool, in calculate_key_alias()
88 require_password_set: bool, in get_existing_key_alias()
136 require_password_set: bool, in huks_rename_key_alias()
159 require_password_set: bool, in rename_key_alias()
160 ) -> bool { in rename_key_alias()
193 require_password_set: bool, in new_with_alias()
204 require_password_set: bool, in new_without_alias()
219 pub fn exists(&self) -> Result<bool> { in exists()
279 pub(crate) fn need_user_auth(&self) -> bool { in need_user_auth()
[all …]
/aosp12/frameworks/native/services/utils/include/serviceutils/
H A DPriorityDumper.h45 virtual status_t dumpCritical(int /*fd*/, const Vector<String16>& /*args*/, bool /*asProto*/) { in dumpCritical() argument
50 virtual status_t dumpHigh(int /*fd*/, const Vector<String16>& /*args*/, bool /*asProto*/) { in dumpHigh() argument
55 virtual status_t dumpNormal(int /*fd*/, const Vector<String16>& /*args*/, bool /*asProto*/) { in dumpNormal() argument
/aosp12/build/soong/tradefed/
H A Dautogen.go47 …Path(ctx android.ModuleContext, prop *string, testSuites []string, autoGenConfig *bool, testConfig…
141 …testConfigTemplateProp *string, testSuites []string, config []Config, autoGenConfig *bool, testIns…
161 …testConfigTemplateProp *string, testSuites []string, config []Config, autoGenConfig *bool, outputF…
176 …testConfigTemplateProp *string, testSuites []string, configs []Config, autoGenConfig *bool) androi…
191 testSuites []string, autoGenConfig *bool, unitTest *bool) android.Path {
214 testConfigTemplateProp *string, testSuites []string, autoGenConfig *bool) android.Path {
230 …testConfigTemplateProp *string, testSuites []string, config []Config, autoGenConfig *bool) android…
249 …testConfigTemplateProp *string, testSuites []string, config []Config, autoGenConfig *bool) android…
268 testSuites []string, autoGenConfig *bool) android.Path {
292 …testConfigTemplateProp *string, manifest android.Path, testSuites []string, autoGenConfig *bool, c…
/ohos5.0/base/security/asset/services/common/src/
H A Dlib.rs63 fn GetUserIdByUid(uid: u64, userId: &mut u32) -> bool; in GetUserIdByUid()
64 fn IsUserIdExist(userId: i32, exist: &mut bool) -> bool; in IsUserIdExist()
80 pub fn is_user_id_exist(user_id: i32) -> Result<bool> { in is_user_id_exist()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/
H A Devents.rs90 pub fn is_empty(&self) -> bool { in is_empty()
148 fn is_readable(&self) -> bool { in is_readable()
152 fn is_writable(&self) -> bool { in is_writable()
156 fn is_read_closed(&self) -> bool { in is_read_closed()
160 fn is_write_closed(&self) -> bool { in is_write_closed()
164 fn is_error(&self) -> bool { in is_error()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/
H A Dsleeper.rs34 pub fn is_parked(&self, worker_index: &usize) -> bool { in is_parked()
73 pub fn push_worker(&self, worker_index: usize) -> bool { in push_worker()
85 pub fn try_inc_searching_num(&self) -> bool { in try_inc_searching_num()
98 pub fn dec_searching_num(&self) -> bool { in dec_searching_num()
116 fn dec_searching_num(&self) -> bool { in dec_searching_num()
131 fn dec_active_num(&self) -> bool { in dec_active_num()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/image_provider/
H A Dsvg_image_object.cpp46 bool /*forceResize*/, bool /*syncLoad*/, bool /*loadInVipChannel*/) in MakeCanvasImage() argument
/aosp12/build/blueprint/proptools/
H A Dproptools.go57 func BoolPtr(b bool) *bool {
74 func BoolDefault(b *bool, def bool) bool {
83 func Bool(b *bool) bool {
/aosp12/system/security/keystore2/src/
H A Daudit_log.rs45 pub fn log_key_generated(key: &KeyDescriptor, calling_app: uid_t, success: bool) { in log_key_generated()
50 pub fn log_key_imported(key: &KeyDescriptor, calling_app: uid_t, success: bool) { in log_key_imported()
55 pub fn log_key_deleted(key: &KeyDescriptor, calling_app: uid_t, success: bool) { in log_key_deleted()
67 fn log_key_event(tag: u32, key: &KeyDescriptor, calling_app: uid_t, success: bool) { in log_key_event()
/aosp12/hardware/qcom/sdm845/gps/sdm845/core/data-items/
H A DDataItemConcreteTypesBase.h56 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
72 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
87 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
102 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
117 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
132 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
147 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
164 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
183 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
200 virtual int32_t copy(IDataItemCore* /*src*/, bool* /*dataItemCopied = NULL*/) {return 1;} in copy() argument
[all …]
/aosp12/hardware/interfaces/gnss/2.0/default/
H A DAGnssRil.cpp44 Return<bool> AGnssRil::updateNetworkState(bool, V1_0::IAGnssRil::NetworkType, bool) { in updateNetworkState() argument
49 Return<bool> AGnssRil::updateNetworkAvailability(bool, const hidl_string&) { in updateNetworkAvailability() argument
/aosp12/bootable/recovery/recovery_ui/
H A Dstub_ui.cpp25 size_t /* initial_selection */, bool /* menu_only */, in ShowMenu() argument
26 const std::function<int(int, bool)>& /*key_handler*/) { in ShowMenu() argument
/aosp12/frameworks/base/startop/scripts/lib/
H A Dcmd_utils.py86 shell: bool,
87 simulate: bool) -> Tuple[bool, str]:
125 shell: bool = False,
/aosp12/build/soong/cc/symbolfile/
H A D__init__.py157 def should_omit_version(version: Version, arch: Arch, api: int, llndk: bool,
158 apex: bool) -> bool:
184 def should_omit_symbol(symbol: Symbol, arch: Arch, api: int, llndk: bool,
185 apex: bool) -> bool:
273 api: int, llndk: bool, apex: bool) -> None:

12345678910>>...31