Home
last modified time | relevance | path

Searched refs:required (Results 1 - 21 of 21) sorted by relevance

/base/security/selinux_adapter/scripts/
H A Dbuild_policy.py12 Unless required by applicable law or agreed to in writing, software
32 '--dst-file', help='the policy dest path', required=True)
34 help='the policy tool bin path', required=True)
36 help='prj root path', required=True)
38 help='policy dirs need to be included', required=True)
40 help='build for debug target', required=True)
42 help='build for updater target', required=True)
44 help='system or vendor or default', required=True)
46 help='plat version of vendor policy', required=False)
H A Dbuild_ignore_cfg.py12 Unless required by applicable law or agreed to in writing, software
26 parser.add_argument("--dst-dir", help="the output dest path", required=True)
27 parser.add_argument("--source-root-dir", help="project root path", required=True)
29 "--policy-dir-list", help="policy dirs need to be included", required=True
32 "--components", help="system or vendor or default", required=True
H A Dbuild_contexts.py12 Unless required by applicable law or agreed to in writing, software
33 '--dst-dir', help='the output dest path', required=True)
35 help='the sefcontext_compile bin path', required=True)
37 help='the policy.31 file', required=True)
39 help='prj root path', required=True)
41 help='policy dirs need to be included', required=True)
43 help='system or vendor or default', required=True)
137 print("[required format]: * u:object_r:*:s0")
177 print("[required format]: apl=* name=* domain=* type=*")
/base/update/packaging_tools/
H A Dbuild_module_img.py11 # Unless required by applicable law or agreed to in writing, software
143 parser.add_argument('--image-name', required=True)
144 parser.add_argument('--fs-type', required=True)
145 parser.add_argument('--dac-config', required=True)
146 parser.add_argument('--file-context', required=True)
147 parser.add_argument('--input-path', required=True)
148 parser.add_argument('--output-image-path', required=True)
153 parser.add_argument('--build-image-tools-path', nargs='*', required=False)
154 parser.add_argument('--target-cpu', required=False)
155 parser.add_argument('--pubkey', required
[all...]
/base/security/selinux_adapter/scripts/selinux_check/
H A Dselinux_check_main.py12 Unless required by applicable law or agreed to in writing, software
73 parser.add_argument('--output-path', help='the selinux compile output path', required=True)
74 parser.add_argument('--source-root-dir', help='the project root path', required=True)
75 parser.add_argument('--selinux-check-config', help='the selinux check config file path', required=True)
76 parser.add_argument('--user-policy', help='the user policy file', required=True)
77 parser.add_argument('--developer-policy', help='the developer policy file', required=True)
78 parser.add_argument('--tool-path', help='the policy tool bin path', required=True)
79 parser.add_argument('--policy-dir-list', help='policy dirs need to be included', required=True)
H A Dcheck_permissive.py12 Unless required by applicable law or agreed to in writing, software
89 parser.add_argument('--cil_file', help='the cil file path', required=True)
90 parser.add_argument('--developer_cil_file', help='the developer cil file path', required=True)
91 parser.add_argument('--policy-dir-list', help='policy dirs need to be included', required=True)
H A Dcheck_partition_label_use.py12 Unless required by applicable law or agreed to in writing, software
72 '--file_contexts', help='the file_contexts file path', required=True)
74 '--policy-dir-list', help='the whitelist path list', required=True)
76 '--config', help='the config file path', required=True)
H A Dcheck_ioctl_xperm.py12 Unless required by applicable law or agreed to in writing, software
132 parser.add_argument('--cil_file', help='the cil file path', required=True)
133 parser.add_argument('--developer_cil_file', help='the developer cil file path', required=True)
134 parser.add_argument('--policy-dir-list', help='policy dirs need to be included', required=True)
H A Dcheck_data_regex.py12 Unless required by applicable law or agreed to in writing, software
82 '--file_contexts', help='the file_contexts file path', required=True)
84 '--policy-dir-list', help='the whitelist path list', required=True)
H A Dcheck_perm_group.py12 Unless required by applicable law or agreed to in writing, software
228 '--cil_file', help='the cil file path', required=True)
230 '--developer_cil_file', help='the developer cil file path', required=True)
232 '--policy-dir-list', help='the whitelist path list', required=True)
234 '--config', help='the config file path', required=True)
H A Dcheck_baseline.py12 Unless required by applicable law or agreed to in writing, software
202 '--cil_file', help='the cil file path', required=True)
204 '--developer_cil_file', help='the developer cil file path', required=True)
206 '--config', help='the config file path', required=True)
208 '--policy-dir-list', help='the policy dir list', required=True)
/base/hiviewdfx/hiview/build/
H A Dcopy_plugin_config.py10 # Unless required by applicable law or agreed to in writing, software
31 help='plugin build config json', required=True)
33 help='plugin config json file', required=True)
H A Dgen_plugin_build.py10 # Unless required by applicable law or agreed to in writing, software
344 required=True)
346 required=True)
348 required=True)
349 parser.add_argument('--target_os', help='target os', required=True)
351 required=True)
353 required=True)
354 parser.add_argument('--target_cpu', help='arm or arm64', required=True)
355 parser.add_argument('--plugin_so', help='build library', required=True)
357 required
[all...]
/base/web/webview/interfaces/kits/napi/protos/
H A Dprotoc_runner.py11 # Unless required by applicable law or agreed to in writing, software
27 parser.add_argument("--protoc", required=True,
30 parser.add_argument("--protos-dir", required=True,
/base/startup/init/interfaces/innerkits/fs_manager/
H A Dfstab_mount.c9 * Unless required by applicable law or agreed to in writing, software
605 static int CheckRequiredAndMount(FstabItem *item, bool required) in CheckRequiredAndMount() argument
613 if (!required) { in CheckRequiredAndMount()
649 int MountAllWithFstab(const Fstab *fstab, bool required) in MountAllWithFstab() argument
657 if (required) { in MountAllWithFstab()
667 rc = CheckRequiredAndMount(item, required); in MountAllWithFstab()
668 if (required && (rc < 0)) { // Init fail to mount in the first stage and exit directly. in MountAllWithFstab()
674 if (required) in MountAllWithFstab()
681 int MountAllWithFstabFile(const char *fstabFile, bool required) in MountAllWithFstabFile() argument
692 int rc = MountAllWithFstab(fstab, required); in MountAllWithFstabFile()
745 MountOneWithFstabFile(const char *fstabFile, const char *devName, bool required) MountOneWithFstabFile() argument
[all...]
/base/startup/init/interfaces/innerkits/include/fs_manager/
H A Dfs_manager.h9 * Unless required by applicable law or agreed to in writing, software
99 int MountAllWithFstabFile(const char *fstabFile, bool required);
100 int MountAllWithFstab(const Fstab *fstab, bool required);
102 int MountOneWithFstabFile(const char *fstabFile, const char *devName, bool required);
/base/web/webview/
H A Dcopy_files.py10 # Unless required by applicable law or agreed to in writing, software
98 parser.add_argument('--command-type', required=True)
99 parser.add_argument('--ohos-glue-dir', required=True)
100 parser.add_argument('--outfile', required=True)
101 parser.add_argument('--depfile', required=False)
/base/startup/init/scripts/
H A Dparam_cfg_to_code.py12 # Unless required by applicable law or agreed to in writing, software
140 required=True)
144 required=True)
/base/update/updater/services/flashd/
H A Dflashd_basepkg.bat8 @rem Unless required by applicable law or agreed to in writing, software
/base/startup/appspawn/modules/sandbox/
H A Dsandbox_load.c9 * Unless required by applicable law or agreed to in writing, software
623 // "required" in ParseAppSandboxConfig()
624 cJSON *required = cJSON_GetObjectItemCaseSensitive(root, "required"); in ParseAppSandboxConfig() local
625 if (required) { in ParseAppSandboxConfig()
627 cJSON_ArrayForEach(config, required) in ParseAppSandboxConfig()
629 APPSPAWN_LOGI("Sandbox required config: %{public}s", config->string); in ParseAppSandboxConfig()
/base/sensors/miscdevice/utils/tools/haptic_format_converter/converter/
H A Dconverter.py10 # Unless required by applicable law or agreed to in writing, software
612 required=True, help="Target format: 'oh', 'he_v1', or 'he_v2'.")

Completed in 11 milliseconds