Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/build/make/tools/aconfig/aconfig_device_paths/src/
Dlib.rs29 .map(|s| PathBuf::from(s.to_string())) in read_partition_paths()
45 let mut path = PathBuf::from("/apex"); in parsed_flags_proto_paths()
68 PathBuf::from("/system/etc/aconfig_flags.pb"), in test_read_partition_paths()
69 PathBuf::from("/system_ext/etc/aconfig_flags.pb"), in test_read_partition_paths()
70 PathBuf::from("/product/etc/aconfig_flags.pb"), in test_read_partition_paths()
71 PathBuf::from("/vendor/etc/aconfig_flags.pb") in test_read_partition_paths()
/build/make/tools/aconfig/aconfig_storage_file/src/
Dlib.rs311 package_name: String::from(package_name), in list_flags()
361 package_name: String::from(package_name), in list_flags_with_info()
528 package_name: String::from("com.android.aconfig.storage.test_1"), in test_list_flag()
529 flag_name: String::from("disabled_rw"), in test_list_flag()
531 flag_value: String::from("false"), in test_list_flag()
534 package_name: String::from("com.android.aconfig.storage.test_1"), in test_list_flag()
535 flag_name: String::from("enabled_ro"), in test_list_flag()
537 flag_value: String::from("true"), in test_list_flag()
540 package_name: String::from("com.android.aconfig.storage.test_1"), in test_list_flag()
541 flag_name: String::from("enabled_rw"), in test_list_flag()
[all …]
Dtest_utils.rs30 container: String::from("mockup"), in create_test_package_table()
39 package_name: String::from("com.android.aconfig.storage.test_2"), in create_test_package_table()
45 package_name: String::from("com.android.aconfig.storage.test_1"), in create_test_package_table()
51 package_name: String::from("com.android.aconfig.storage.test_4"), in create_test_package_table()
82 container: String::from("mockup"), in create_test_flag_table()
124 container: String::from("mockup"), in create_test_flag_value_list()
137 container: String::from("mockup"), in create_test_flag_info_list()
/build/blueprint/pathtools/
Dlists_test.go23 from, ext, to string
34 t.Run(test.from, func(t *testing.T) {
35 got := ReplaceExtension(test.from, test.ext)
37 t.Errorf("ReplaceExtension(%v, %v) = %v; want: %v", test.from, test.ext, got, test.to)
/build/soong/android/
Dsoong_config_modules.go386 func importModuleTypes(ctx LoadHookContext, from string, moduleTypes ...string) {
387 from = filepath.Clean(from)
388 if filepath.Ext(from) != ".bp" {
389 ctx.PropertyErrorf("from", "%q must be a file with extension .bp", from)
393 if strings.HasPrefix(from, "../") {
395 from)
399 moduleTypeDefinitions := loadSoongConfigModuleTypeDefinition(ctx, from)
408 moduleType, from)
415 func loadSoongConfigModuleTypeDefinition(ctx LoadHookContext, from string) map[string]blueprint.Mod…
417 key := NewCustomOnceKey(onceKeyType(filepath.Clean(from)))
[all …]
/build/soong/java/
Ddexpreopt_config_testing.go136 from string member
146 from: install.From.RelativeToTop().String(),
256from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot.art",
260from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot.oat",
264from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot-core2…
268from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot-core2…
272from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot-extra…
276from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot-extra…
282from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot.vdex",
286from: "out/soong/dexpreopt_arm64/dex_artjars/android/apex/art_boot_images/javalib/arm64/boot-core2…
[all …]
/build/make/
Dhelp.sh43 snod Quickly rebuild the system image from built packages
45 vnod Quickly rebuild the vendor image from built packages
47 pnod Quickly rebuild the product image from built packages
49 senod Quickly rebuild the system_ext image from built packages
51 onod Quickly rebuild the odm image from built packages
53 vdnod Quickly rebuild the vendor_dlkm image from built packages
55 odnod Quickly rebuild the odm_dlkm image from built packages
57 sdnod Quickly rebuild the system_dlkm image from built packages
/build/release/flag_declarations/
DRELEASE_READ_FROM_NEW_STORAGE_CC.textproto3 description: "Enable reading from new storage from C/C++ aconfig flag codegen."
DRELEASE_REMOVE_LEGACY_EMOJI_FONT.textproto3 description: "feature flag for removing legacy emoji font from system image."
DRELEASE_READ_FROM_NEW_STORAGE.textproto3 description: "Control if we should read from new storage."
DRELEASE_BINDER_DEATH_RECIPIENT_WEAK_FROM_JNI.textproto3 description: "If enabled, DeathRecipient is not strongly referenced from JNI."
DRELEASE_AVATAR_PICKER_APP.textproto3 description: "Move User avatar picker from SettingsLib to preinstalled app."
DRELEASE_CRASHRECOVERY_FILE_MOVE.textproto3 description: "If true, then files are moved from platform to apex"
/build/make/tools/aconfig/aconfig_storage_read_api/src/
Dmapped_file.rs56 String::from(storage_dir) + "/maps/" + container + ".package.map" in get_mapped_file()
58 StorageFileType::FlagMap => String::from(storage_dir) + "/maps/" + container + ".flag.map", in get_mapped_file()
59 StorageFileType::FlagVal => String::from(storage_dir) + "/boot/" + container + ".val", in get_mapped_file()
60 StorageFileType::FlagInfo => String::from(storage_dir) + "/boot/" + container + ".info", in get_mapped_file()
86 let storage_dir = String::from("/tmp/") + &number.to_string(); in create_test_storage_files()
Dlib.rs246 error_message: String::from(""), in new()
253 error_message: String::from(""), in new()
277 error_message: String::from(""), in new()
284 error_message: String::from(""), in new()
306 Self { query_success: true, error_message: String::from(""), flag_value: value } in new()
322 Self { query_success: true, error_message: String::from(""), flag_attribute: info } in new()
340 error_message: String::from(""), in new()
401 let storage_dir = String::from("/tmp/") + &number.to_string(); in create_test_storage_files()
/build/make/core/tasks/
DREADME.dex_preopt_check.md15 1. There is an APEX/SDK mismatch. (E.g., the APEX is built from source while
16 the SDK is built from prebuilt.)
21 `prebuilt_apex`/`apex_set` module when building from prebuilt.
24 (E.g., the `java_import` module has `prefer: false` when building from
36 file when building from source.
/build/make/tools/aconfig/aconfig/tests/
Dtest.aconfig4 # This flag's final value is calculated from:
18 # This flag's final value is calculated from:
29 # This flag's final value is calculated from:
39 # This flag's final value is calculated from:
48 # This flag's final value calculated from:
/build/soong/cc/
Dndk_test.go26 isDep := func(ctx *android.TestResult, from, toExpected android.Module) bool {
28 ctx.VisitDirectDeps(from, func(toActual blueprint.Module) {
/build/make/tools/aconfig/aconfig_storage_write_api/src/
Dflag_value_update.rs45 buf[head] = u8::from(flag_value).to_le_bytes()[0]; in update_boolean_flag_value()
60 let true_byte = u8::from(true).to_le_bytes()[0]; in test_boolean_flag_value_update()
61 let false_byte = u8::from(false).to_le_bytes()[0]; in test_boolean_flag_value_update()
/build/soong/java/core-libraries/
DAndroid.bp20 // parts from all three of those modules.
44 name: "core.current.stubs.from-source",
56 name: "core.current.stubs.from-text",
76 "core.current.stubs.from-source",
81 "core.current.stubs.from-text",
84 "core.current.stubs.from-source",
91 name: "core.current.stubs.exportable.from-source",
112 "core.current.stubs.exportable.from-source",
204 "core.module_lib.stubs.from-source",
209 "core.module_lib.stubs.from-text",
[all …]
/build/soong/cmd/sbox/sbox_proto/
Dsbox.proto25 // If set, GCC-style dependency files from any command that references __SBOX_DEPFILE__ will be
32 // A list of copy rules to run before the sandboxed command. The from field is relative to the
43 // A list of copy rules to run after the sandboxed command. The from field is relative to the
56 // Copy describes a from-to pair of files to copy. The paths may be relative, the root that they
58 // from and to.
60 required string from = 1; field
76 // PathMapping describes a mapping from a path outside the sandbox to the path inside the sandbox.
78 required string from = 1; field
/build/make/tools/canoninja/
Dcanoninja.go19 from := 0
21 for from < len(buffer) {
22 line := getLine(buffer[from:])
24 from += len(line)
/build/soong/cmd/symbols_map/symbols_map_proto/
Dsymbols_map.proto22 // elf file it is the elf build ID, for an R8 dictionary it is the hash from the comments in the
23 // top of the file. It may be empty if no hash could be extracted from the file.
32 // ELF denotes a mapping from an elf build ID to an unstripped elf file.
34 // R8 denotes a mapping from an R8 dictionary hash to an R8 dictionary.
/build/soong/linkerconfig/proto/
Dlinker_config.proto18 // format can be found from
32 // Providing libs from the module
35 // Required libs from the module
/build/soong/compliance/project_metadata_proto/
Dproject_metadata.proto58 // came from, containing a type of: ARCHIVE, GIT, PIPER, or OTHER. Typically,
59 // a package should contain only a single URL from these types. Occasionally,
67 // - If the package comes from Git or another source control system,
74 // The date of the change in which the package was last upgraded from
76 // This should only identify package upgrades from upstream, not local
120 // The URL of the upstream git repository this package is retrieved from.
129 // The URL of the upstream SVN repository this package is retrieved from.
138 // from. For example:
146 // from. For example:
154 // package is being migrated into third_party from elsewhere in piper, or
[all …]

12345678910>>...12