Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/base/security/certificate_manager/config/
DBUILD.gn17 source = "systemCertificates/02265526.0"
24 source = "systemCertificates/03179a64.0"
31 source = "systemCertificates/062cdee6.0"
38 source = "systemCertificates/064e0aa9.0"
45 source = "systemCertificates/06dc52d5.0"
52 source = "systemCertificates/080911ac.0"
59 source = "systemCertificates/fe8a2cd8.0"
66 source = "systemCertificates/09789157.0"
73 source = "systemCertificates/0a775a30.0"
80 source = "systemCertificates/0b1b94ef.0"
[all …]
/base/powermgr/battery_manager/charger/resources/
DBUILD.gn18 source = "font.png"
25 source = "icon_error.png"
32 source = "loop00000.png"
39 source = "loop00001.png"
46 source = "loop00002.png"
53 source = "loop00003.png"
60 source = "loop00004.png"
67 source = "loop00005.png"
74 source = "loop00006.png"
81 source = "loop00007.png"
[all …]
/base/global/system_resources/
DBUILD.gn16 source = "fonts/HarmonyOS_Sans_Black.ttf"
23 source = "fonts/HarmonyOS_Sans_Black_Italic.ttf"
30 source = "fonts/HarmonyOS_Sans_Bold.ttf"
37 source = "fonts/HarmonyOS_Sans_Bold_Italic.ttf"
44 source = "fonts/HarmonyOS_Sans_Condensed_Black.ttf"
51 source = "fonts/HarmonyOS_Sans_Condensed_Black_Italic.ttf"
58 source = "fonts/HarmonyOS_Sans_Condensed_Bold.ttf"
65 source = "fonts/HarmonyOS_Sans_Condensed_Bold_Italic.ttf"
72 source = "fonts/HarmonyOS_Sans_Condensed_Light.ttf"
79 source = "fonts/HarmonyOS_Sans_Condensed_Light_Italic.ttf"
[all …]
/base/location/services/location_locator/locator/
DBUILD.gn18 "$SUBSYSTEM_DIR/location_locator/callback/source/cached_locations_callback_proxy.cpp",
19 "$SUBSYSTEM_DIR/location_locator/callback/source/country_code_callback_proxy.cpp",
20 "$SUBSYSTEM_DIR/location_locator/callback/source/gnss_status_callback_proxy.cpp",
21 "$SUBSYSTEM_DIR/location_locator/callback/source/locating_required_data_callback_proxy.cpp",
22 "$SUBSYSTEM_DIR/location_locator/callback/source/locator_callback_proxy.cpp",
23 "$SUBSYSTEM_DIR/location_locator/callback/source/nmea_message_callback_proxy.cpp",
24 "$SUBSYSTEM_DIR/location_locator/locator/source/fusion_controller.cpp",
25 "$SUBSYSTEM_DIR/location_locator/locator/source/geo_convert_proxy.cpp",
26 "$SUBSYSTEM_DIR/location_locator/locator/source/gnss_ability_proxy.cpp",
27 "$SUBSYSTEM_DIR/location_locator/locator/source/location_config_manager.cpp",
[all …]
/base/powermgr/power_manager/services/native/src/wakeup/
Dwakeup_controller.h80 static std::shared_ptr<WakeupMonitor> CreateMonitor(WakeupSource& source);
107 explicit WakeupMonitor(WakeupSource& source) in WakeupMonitor() argument
109 reason_ = source.GetReason(); in WakeupMonitor()
118 explicit PowerkeyWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in PowerkeyWakeupMonitor() argument
129 explicit KeyboardWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in KeyboardWakeupMonitor() argument
137 explicit MousekeyWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in MousekeyWakeupMonitor() argument
145 explicit TouchpadWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in TouchpadWakeupMonitor() argument
153 explicit PenWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in PenWakeupMonitor() argument
161 explicit SingleClickWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in SingleClickWakeupMonitor() argument
169 explicit DoubleClickWakeupMonitor(WakeupSource& source) : WakeupMonitor(source) {} in DoubleClickWakeupMonitor() argument
[all …]
Dwakeup_controller.cpp83 for (auto source = sourceList_.begin(); source != sourceList_.end(); source++) { in Init() local
84 POWER_HILOGI(FEATURE_WAKEUP, "registered type=%{public}u", (*source).GetReason()); in Init()
85 std::shared_ptr<WakeupMonitor> monitor = WakeupMonitor::CreateMonitor(*source); in Init()
87 POWER_HILOGI(FEATURE_WAKEUP, "register type=%{public}u", (*source).GetReason()); in Init()
131 for (auto source = sourceList_.begin(); source != sourceList_.end(); source++) { in RegisterSettingsObserver() local
132 std::shared_ptr<WakeupMonitor> monitor = WakeupMonitor::CreateMonitor(*source); in RegisterSettingsObserver()
339 std::shared_ptr<WakeupMonitor> WakeupMonitor::CreateMonitor(WakeupSource& source) in CreateMonitor() argument
341 WakeupDeviceType reason = source.GetReason(); in CreateMonitor()
346 …monitor = std::static_pointer_cast<WakeupMonitor>(std::make_shared<PowerkeyWakeupMonitor>(source)); in CreateMonitor()
349 …monitor = std::static_pointer_cast<WakeupMonitor>(std::make_shared<MousekeyWakeupMonitor>(source)); in CreateMonitor()
[all …]
/base/startup/init/services/modules/init_eng/
Dinit_eng.c98 ENG_STATIC void BindMountFile(const char *source, const char *target) in BindMountFile() argument
101 const char *p = source; in BindMountFile()
103 const char *end = source + strlen(source); in BindMountFile()
112 PLUGIN_LOGI("path \' %s \' without extra slash, ignore it", source); in BindMountFile()
117 PLUGIN_LOGI("path \' %s \' ends with slash, ignore it", source); in BindMountFile()
128 if (mount(source, targetFullPath, NULL, MS_BIND, NULL) != 0) { in BindMountFile()
129 PLUGIN_LOGE("Failed to bind mount %s to %s, err = %d", source, targetFullPath, errno); in BindMountFile()
131 PLUGIN_LOGI("Bind mount %s to %s done", source, targetFullPath); in BindMountFile()
135 if (symlink(source, targetFullPath) < 0) { in BindMountFile()
136 PLUGIN_LOGE("Failed to link %s to %s, err = %d", source, targetFullPath, errno); in BindMountFile()
[all …]
/base/global/timezone/data/
DBUILD.gn17 source = "//base/global/timezone/data/prebuild/posix/Africa/Abidjan"
24 source = "//base/global/timezone/data/prebuild/posix/Africa/Accra"
31 source = "//base/global/timezone/data/prebuild/posix/Africa/Addis_Ababa"
38 source = "//base/global/timezone/data/prebuild/posix/Africa/Algiers"
45 source = "//base/global/timezone/data/prebuild/posix/Africa/Asmara"
52 source = "//base/global/timezone/data/prebuild/posix/Africa/Bamako"
59 source = "//base/global/timezone/data/prebuild/posix/Africa/Bangui"
66 source = "//base/global/timezone/data/prebuild/posix/Africa/Banjul"
73 source = "//base/global/timezone/data/prebuild/posix/Africa/Bissau"
80 source = "//base/global/timezone/data/prebuild/posix/Africa/Blantyre"
[all …]
/base/location/frameworks/native/
DBUILD.gn33 "$LOCATION_NATIVE_DIR/source/cached_locations_callback_host.cpp",
34 "$LOCATION_NATIVE_DIR/source/country_code_callback_host.cpp",
35 "$LOCATION_NATIVE_DIR/source/country_code_manager.cpp",
36 "$LOCATION_NATIVE_DIR/source/gnss_status_callback_host.cpp",
37 "$LOCATION_NATIVE_DIR/source/locating_required_data_callback_host.cpp",
38 "$LOCATION_NATIVE_DIR/source/location_data_handler.cpp",
39 "$LOCATION_NATIVE_DIR/source/location_data_manager.cpp",
40 "$LOCATION_NATIVE_DIR/source/location_data_rdb_observer.cpp",
41 "$LOCATION_NATIVE_DIR/source/location_switch_callback_host.cpp",
42 "$LOCATION_NATIVE_DIR/source/locator.cpp",
[all …]
/base/location/frameworks/location_common/common/
DBUILD.gn19 "$LOCATION_COMMON_DIR/source/app_identity.cpp",
20 "$LOCATION_COMMON_DIR/source/common_hisysevent.cpp",
21 "$LOCATION_COMMON_DIR/source/common_utils.cpp",
22 "$LOCATION_COMMON_DIR/source/geo_address.cpp",
23 "$LOCATION_COMMON_DIR/source/geo_coding_mock_info.cpp",
24 "$LOCATION_COMMON_DIR/source/geofence_state.cpp",
25 "$LOCATION_COMMON_DIR/source/location.cpp",
26 "$LOCATION_COMMON_DIR/source/location_data_rdb_helper.cpp",
27 "$LOCATION_COMMON_DIR/source/location_dumper.cpp",
28 "$LOCATION_COMMON_DIR/source/location_sa_load_manager.cpp",
[all …]
/base/powermgr/power_manager/services/native/src/suspend/
Dsuspend_controller.h86 const static std::shared_ptr<SuspendMonitor> CreateMonitor(SuspendSource& source);
120 explicit SuspendMonitor(const SuspendSource& source) in SuspendMonitor() argument
122 reason_ = source.GetReason(); in SuspendMonitor()
123 action_ = source.GetAction(); in SuspendMonitor()
124 delayMs_ = source.GetDelay(); in SuspendMonitor()
135 explicit PowerKeySuspendMonitor(SuspendSource& source) : SuspendMonitor(source) {} in PowerKeySuspendMonitor() argument
148 explicit TimeoutSuspendMonitor(SuspendSource& source) : SuspendMonitor(source) {} in TimeoutSuspendMonitor() argument
157 explicit LidSuspendMonitor(SuspendSource& source) : SuspendMonitor(source) {} in LidSuspendMonitor() argument
165 explicit SwitchSuspendMonitor(SuspendSource& source) : SuspendMonitor(source) {} in SwitchSuspendMonitor() argument
/base/location/test/location_locator/
DBUILD.gn22 "$LOCATION_ROOT_DIR/test/location_locator/source/callback_test.cpp",
23 "$LOCATION_ROOT_DIR/test/location_locator/source/country_code_manager_test.cpp",
24 "$LOCATION_ROOT_DIR/test/location_locator/source/fusion_controller_test.cpp",
25 "$LOCATION_ROOT_DIR/test/location_locator/source/location_approximately_permission_test.cpp",
26 "$LOCATION_ROOT_DIR/test/location_locator/source/location_config_manager_test.cpp",
27 "$LOCATION_ROOT_DIR/test/location_locator/source/location_without_permission_test.cpp",
28 "$LOCATION_ROOT_DIR/test/location_locator/source/locator_background_proxy_test.cpp",
29 "$LOCATION_ROOT_DIR/test/location_locator/source/locator_event_manager_test.cpp",
30 "$LOCATION_ROOT_DIR/test/location_locator/source/locator_impl_test.cpp",
31 "$LOCATION_ROOT_DIR/test/location_locator/source/locator_required_data_manager_test.cpp",
[all …]
/base/security/device_auth/test/unittest/deviceauth/
DBUILD.gn54 "source/hc_dev_info_mock.c",
55 "source/json_utils_mock.c",
92 "source/creds_manager_test.cpp",
93 "source/device_auth_ext_mock.c",
94 "source/deviceauth_standard_test.cpp",
95 "source/group_operation_common_test.cpp",
96 "source/iso_auth_task_test.cpp",
97 "source/os_account_adapter_mock.c",
98 "source/protocol_task_main_mock.c",
99 "source/standard_exchange_task_test.cpp",
[all …]
/base/location/frameworks/js/napi/
DBUILD.gn25 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_adapter.cpp",
26 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_entry.cpp",
27 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_event.cpp",
28 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_system.cpp",
63 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_adapter.cpp",
64 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_entry.cpp",
65 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_event.cpp",
66 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_system.cpp",
95 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_adapter.cpp",
96 "$LOCATION_ROOT_DIR/frameworks/js/napi/source/location_napi_entry.cpp",
[all …]
/base/update/updater/services/diffpatch/
Ddiff_main.cpp20 std::string source; member
37 diffParams.source = optarg; in main()
59 if (diffParams.source != "" && diffParams.destination != "" && diffParams.patch != "") { in main()
63 diffParams.source, in main()
68 diffParams.source, in main()
/base/startup/init/services/etc/
DBUILD.gn59 source = "//base/startup/init/services/etc/init.without_two_stages.cfg"
61 source = "//base/startup/init/services/etc/init.cfg"
69 source = "//base/startup/init/services/etc/watchdog.cfg"
78 source = "//base/startup/init/services/etc/console.user.cfg"
81 source = "//base/startup/init/services/etc/console.cfg"
91 source = "//base/startup/init/services/etc/ueventd.cfg"
98 source = "//base/startup/init/services/etc/passwd"
108 source = "//base/startup/init/services/etc/group"
118 source = "//base/startup/init/services/etc/init.usb.cfg"
124 source = "//base/startup/init/services/etc/param/ohos.para"
[all …]
/base/security/appverify/interfaces/innerkits/appverify/config/
DBUILD.gn18 source = "OpenHarmony/trusted_apps_sources.json"
20 source = "trusted_apps_sources.json"
28 source = "trusted_apps_sources_test.json"
36 source = "OpenHarmony/trusted_root_ca.json"
38 source = "trusted_root_ca.json"
46 source = "trusted_root_ca_test.json"
53 source = "trusted_tickets_sources.json"
/base/startup/init/services/etc/appender/
Dfile_appender.gni20 # source: file to be appended (Required)
23 # If not set, it will install with the source file name
24 # files: files to be appended to the end of source file (Optional)
29 # source = "//base/startup/init/services/etc/passwd"
35 # It will append files and lines to source passwd file after deps targets
38 assert(defined(invoker.source), "source full target name must be defined.")
45 _final_install_name = get_path_info(invoker.source, "file")
62 "--source-file",
63 rebase_path(invoker.source, root_build_dir),
83 inputs = [ invoker.source ]
[all …]
/base/update/sys_installer_lite/frameworks/source/
DBUILD.gn17 "//base/update/sys_installer_lite/frameworks/source/updater/hota_updater.c",
18 "//base/update/sys_installer_lite/frameworks/source/verify/app_rsa.c",
19 "//base/update/sys_installer_lite/frameworks/source/verify/app_sha256.c",
20 "//base/update/sys_installer_lite/frameworks/source/verify/hota_verify.c",
26 "//base/update/sys_installer_lite/frameworks/source/verify",
41 "//base/update/sys_installer_lite/frameworks/source/updater/hota_updater.c",
42 "//base/update/sys_installer_lite/frameworks/source/verify/app_rsa.c",
43 "//base/update/sys_installer_lite/frameworks/source/verify/app_sha256.c",
44 "//base/update/sys_installer_lite/frameworks/source/verify/hota_verify.c",
50 "//base/update/sys_installer_lite/frameworks/source/verify",
/base/global/i18n/frameworks/intl/
DBUILD.gn68 "//third_party/icu/icu4c/source",
69 "//third_party/icu/icu4c/source/common",
70 "//third_party/icu/icu4c/source/i18n",
71 "//third_party/icu/icu4c/source/common/unicode",
175 source = "//base/global/i18n/frameworks/intl/etc/language_config.para"
181 source = "//base/global/i18n/frameworks/intl/etc/language_config.para.dac"
187 source = "//base/global/i18n/frameworks/intl/etc/supported_locales.xml"
194 source = "//base/global/i18n/frameworks/intl/etc/supported_regions.xml"
201 source = "//base/global/i18n/frameworks/intl/etc/white_languages.xml"
208 source = "//base/global/i18n/frameworks/intl/etc/forbidden_languages.xml"
[all …]
/base/global/i18n_lite/frameworks/i18n/src/
Dstr_util.cpp35 void ArrayCopy(std::string *target, const int targetSize, const std::string *source, const int sour… in ArrayCopy() argument
37 if (target == nullptr || source == nullptr || (sourceSize > targetSize)) { in ArrayCopy()
41 target[i] = source[i]; in ArrayCopy()
45 char *NewArrayAndCopy(const char *source, const int len) in NewArrayAndCopy() argument
47 …if ((source == nullptr) || (len <= 0) || (len > g_i18nMaxMalloc)) { // 4096 is the max size that w… in NewArrayAndCopy()
54 errno_t rc = strcpy_s(out, len + 1, source); in NewArrayAndCopy()
63 char *I18nNewCharString(const char *source, const int len) in I18nNewCharString() argument
65 …if ((source == nullptr) || (len <= 0) || len > g_i18nMaxMalloc) { // 4096 is the max size of alloc… in I18nNewCharString()
72 errno_t rc = memcpy_s(out, len + 1, source, len); in I18nNewCharString()
/base/startup/init/services/etc/param/
Dparam_fixer.gni18 assert(defined(invoker.source), "source must be defined for ${target_name}.")
22 get_path_info(invoker.source, "file")
24 _output_para_file = get_path_info(invoker.source, "file")
32 "--source-file",
33 rebase_path(invoker.source, root_build_dir),
45 inputs = [ invoker.source ]
67 # Open source license related
/base/msdp/device_status/etc/drag_icon/
DBUILD.gn17 source = "src/Copy_Drag.svg"
24 source = "src/Copy_One_Drag.svg"
31 source = "src/Default_Drag.svg"
38 source = "src/Forbid_Drag.svg"
45 source = "src/Forbid_One_Drag.svg"
52 source = "src/Mouse_Drag.svg"
59 source = "src/Move_Drag.svg"
/base/startup/appspawn/etc/sandbox/
Dappdata_sandbox_fixer.gni18 assert(defined(invoker.source), "source must be defined for ${target_name}.")
22 get_path_info(invoker.source, "file")
23 _output_para_file = get_path_info(invoker.source, "file")
32 "--source-file",
33 rebase_path(invoker.source, root_build_dir),
53 inputs = [ invoker.source ]
75 # Open source license related
/base/security/appverify/interfaces/innerkits/appverify/test/unittest/src/
Dhap_crl_manager_test.cpp42 std::ifstream source; in CopyFile() local
44 source.open(sourceFilePath.c_str(), std::ios::in); in CopyFile()
45 if (!source.is_open()) { in CopyFile()
50 source.close(); in CopyFile()
53 dest << source.rdbuf(); in CopyFile()
54 source.close(); in CopyFile()

12345678910>>...15