Home
last modified time | relevance | path

Searched refs:create (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/tools/acloud/create/
Dcreate_test.py23 from acloud.create import avd_spec
24 from acloud.create import create
25 from acloud.create import gce_local_image_remote_instance
46 create.GetAvdCreatorClass(avd_type, ins_type, image_source)
49 avd_creator_class = create.GetAvdCreatorClass(
68 create._CheckForAutoconnect(args)
75 create._CheckForAutoconnect(args)
80 create._CheckForAutoconnect(args)
109 create._CheckForSetup(args)
120 create._CheckForSetup(args)
[all …]
Dlocal_image_remote_host_test.py20 from acloud.create import avd_spec
21 from acloud.create import create
22 from acloud.create import create_common
23 from acloud.create import local_image_remote_host
52 create.Run(args)
59 create.Run(args)
Dcreate.py31 from acloud.create import avd_spec
32 from acloud.create import cheeps_remote_image_remote_instance
33 from acloud.create import gce_local_image_remote_instance
34 from acloud.create import gce_remote_image_remote_instance
35 from acloud.create import goldfish_local_image_local_instance
36 from acloud.create import goldfish_remote_host
37 from acloud.create import goldfish_remote_image_remote_instance
38 from acloud.create import local_image_local_instance
39 from acloud.create import local_image_remote_instance
40 from acloud.create import local_image_remote_host
[all …]
Dremote_image_remote_host_test.py20 from acloud.create import avd_spec
21 from acloud.create import create
22 from acloud.create import remote_image_remote_host
50 create.Run(args)
57 create.Run(args)
Dgoldfish_remote_image_remote_instance_test.py20 from acloud.create import avd_spec
21 from acloud.create import create
43 create.Run(args)
49 create.Run(args)
Dgoldfish_remote_host_test.py20 from acloud.create import avd_spec
21 from acloud.create import create
46 create.Run(args)
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DPairTest.java31 Pair<Object, Object> p1 = Pair.create(obj1, obj1); in testPairs()
40 p1 = Pair.create(null, null); in testPairs()
41 p2 = Pair.create(null, null); in testPairs()
48 p1 = Pair.create(null, new Object()); in testPairs()
49 p2 = Pair.create(null, new Object()); in testPairs()
53 p1 = Pair.create(null, obj1); in testPairs()
54 p2 = Pair.create(null, obj1); in testPairs()
59 p1 = Pair.create(obj1, obj2); in testPairs()
60 p2 = Pair.create(obj1, obj2); in testPairs()
63 Pair<String, String> p3 = Pair.create(new String("abc"), new String("2.4")); in testPairs()
[all …]
/tools/apksig/src/test/java/com/android/apksig/util/
DDataSourceFromRAFFactory.java23 @Override DataSource create(RandomAccessFile file) { in create() method
27 @Override DataSource create(RandomAccessFile file, long offset, long size) { in create() method
32 @Override DataSource create(RandomAccessFile file) { in create() method
36 @Override DataSource create(RandomAccessFile file, long offset, long size) { in create() method
41 abstract DataSource create(RandomAccessFile file); in create() method in DataSourceFromRAFFactory
42 abstract DataSource create(RandomAccessFile file, long offset, long size); in create() method in DataSourceFromRAFFactory
/tools/test/connectivity/acts/framework/tests/controllers/
Dmonsoon_test.py31 monsoons = monsoon.create([12345])
35 monsoons = monsoon.create([{'type': 'LvpmStockMonsoon', 'serial': 10}])
40 monsoons = monsoon.create([23456])
44 monsoons = monsoon.create([{'type': 'HvpmMonsoon', 'serial': 10}])
50 monsoon.create([{'type': 'UNKNOWN', 'serial': 10}])
54 monsoon.create([{'type': 'LvpmStockMonsoon'}])
Diperf_client_test.py40 iperf_client.create([{'AndroidDevice': 'foo'}])[0],
47 iperf_client.create([{'ssh_config': {'user': '', 'host': ''}}])[0],
54 iperf_client.create([{}])[0],
/tools/tradefederation/core/javatests/com/android/tradefed/result/
DMultiFailureDescriptionTest.java32 FailureDescription failure1 = FailureDescription.create("error message 1"); in testCreation()
33 FailureDescription failure2 = FailureDescription.create("error message 2"); in testCreation()
43 FailureDescription failure1 = FailureDescription.create("error message 1"); in testCreation_nested()
44 FailureDescription failure2 = FailureDescription.create("error message 2"); in testCreation_nested()
55 FailureDescription failure1 = FailureDescription.create("error message 1"); in testFormat()
56 FailureDescription failure2 = FailureDescription.create("error message 2"); in testFormat()
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_runners/
Dota_runner_factory_test.py104 ota_runner_factory.create('ota_package', ['ota_sl4a'],
110 ota_runner_factory.create({'ota': 'pkg'}, {'ota': 'sl4a'},
115 ret = ota_runner_factory.create('', '', self.device)
120 ret = ota_runner_factory.create([], [], self.device)
125 first_return = ota_runner_factory.create([], [], self.device)
127 second_return = ota_runner_factory.create([], [], self.device)
133 first_return = ota_runner_factory.create([], [],
136 second_return = ota_runner_factory.create([], [],
/tools/tradefederation/core/javatests/com/android/tradefed/retry/
DBaseRetryDecisionTest.java140 TestRunResult result = createResult(null, FailureDescription.create("failure2")); in testShouldRetry_failure()
151 FailureDescription.create("failure"), in testShouldRetry_failure_nonRetriable()
152 FailureDescription.create("failure2").setRetriable(false)); in testShouldRetry_failure_nonRetriable()
161 TestRunResult result = createResult(null, FailureDescription.create("failure2")); in testShouldRetry_success()
174 FailureDescription failure = FailureDescription.create("run failure"); in testShouldRetry_runFailure()
184 FailureDescription failure = FailureDescription.create("run failure"); in testShouldRetry_runFailure_noFullRetry()
186 TestRunResult result = createResult(FailureDescription.create("failure"), null, failure); in testShouldRetry_runFailure_noFullRetry()
197 FailureDescription failure = FailureDescription.create("run failure"); in testShouldRetry_runFailure_nonRetriable()
201 FailureDescription failure2 = FailureDescription.create("run failure2"); in testShouldRetry_runFailure_nonRetriable()
213 FailureDescription failure = FailureDescription.create("run failure"); in testShouldRetry_multi_runFailure_nonRetriable()
[all …]
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_tools/
Dota_tool_factory_test.py34 ret = ota_tool_factory.create(MockOtaTool.__name__, 'command')
41 ota_tool_factory.create(MockOtaTool.__name__, 'command')
47 ret_a = ota_tool_factory.create(MockOtaTool.__name__, 'command')
48 ret_b = ota_tool_factory.create(MockOtaTool.__name__, 'command')
/tools/ndkports/googletest/
Dbuild.gradle.kts33 create("gtest") { in <lambda>()
36 create("gtest_main") { in <lambda>()
39 create("gmock") { in <lambda>()
42 create("gmock_main") { in <lambda>()
92 create<MavenPublication>("maven") { in <lambda>()
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/
DApiSelectionOptions.kt91 AnnotationFilter.create( in <lambda>()
105 lazy(LazyThreadSafetyMode.NONE) { AnnotationFilter.create(showAnnotationValues) } in <lambda>()
113 lazy(LazyThreadSafetyMode.NONE) { AnnotationFilter.create(showSingleAnnotationValues) } in <lambda>()
124 AnnotationFilter.create(showForStubPurposesAnnotationValues) in <lambda>()
DAnnotationsMerger.kt634 return DefaultAnnotationItem.create( in <lambda>()
641 DefaultAnnotationAttribute.create( in <lambda>()
645 DefaultAnnotationAttribute.create( in <lambda>()
721 attributes.add(DefaultAnnotationAttribute.create(TYPE_DEF_VALUE_ATTRIBUTE, value)) in <lambda>()
724 DefaultAnnotationAttribute.create( in <lambda>()
730 return DefaultAnnotationItem.create( in <lambda>()
747 DefaultAnnotationAttribute.create(TYPE_DEF_VALUE_ATTRIBUTE, value) in <lambda>()
753 DefaultAnnotationAttribute.create( in <lambda>()
771 return DefaultAnnotationItem.create( in <lambda>()
783 DefaultAnnotationItem.create( in <lambda>()
[all …]
/tools/netsim/rust/common/src/util/
Dzip_artifact.rs102 let mut zip_writer = ZipWriter::new(File::create(zip_file)?); in zip_artifacts()
152 if File::create(&file).is_err() { in test_recurse_files()
160 File::create(&nested_file).unwrap(); in test_recurse_files()
185 if File::create(&zip_file_1).is_err() { in test_fetch_zip_files()
188 File::create(&zip_file_2).unwrap(); in test_fetch_zip_files()
189 File::create(&zip_file_3).unwrap(); in test_fetch_zip_files()
190 File::create(zip_file_faulty).unwrap(); in test_fetch_zip_files()
/tools/acloud/
DREADME.md5 Acloud is a command line tool that assists users to create an Android Virtual
40 * [create](#create)
47 #### **create**
60 > $ acloud create
64 > $ acloud create --local-image [optional local-image-path]
69 > $ acloud create --local-instance
73 > $ acloud create --local-instance --local-image
88 Additional helpful create options are:
93 Acloud will also create a ssh tunnel to enable adb and webrtc connection to the instance. Other AVD…
109 > $ acloud create --help
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/result/ddmlib/
DTestRunToTestInvocationForwarderTest.java75 verify(mMockListener).testFailed(td1, FailureDescription.create("I failed")); in testForwarding()
78 verify(mMockListener).testFailed(td2, FailureDescription.create("I failed")); in testForwarding()
92 FailureDescription.create( in testForwarding_null()
115 inOrder.verify(mMockListener).testFailed(td1, FailureDescription.create("I failed")); in testForwarding_null()
145 inOrder.verify(mMockListener).testFailed(td1, FailureDescription.create("I failed")); in testForwarding_null_ignored()
163 FailureDescription.create( in testForwarding_initError()
185 verify(mMockListener).testFailed(td1, FailureDescription.create("I failed")); in testForwarding_initError()
/tools/metalava/metalava-model/src/test/java/com/android/tools/metalava/model/
DDefaultAnnotationItemTest.kt52 DefaultAnnotationItem.create(placeholderCodebase, "@androidx.annotation.Nullable") in supportsDocumentation()
61 DefaultAnnotationItem.create( in testIntRange()
77 DefaultAnnotationItem.create( in testIntDef()
/tools/metalava/buildSrc/
Dbuild.gradle.kts37 create("metalava-build-plugin") { in <lambda>()
46 create("metalava-model-provider-plugin") { in <lambda>()
/tools/asuite/atest/
Dbanner.py35 def create(config_dir: Path) -> BannerHistory: member in BannerHistory
71 def create() -> BannerPrinter: member in BannerPrinter
95 history = BannerHistory.create(self._config_dir)
/tools/platform-compat/java/com/android/class2nonsdklist/
DClass2NonSdkList.java97 .create("s")); in main()
102 .create('w')); in main()
107 .create("d")); in main()
113 .create('m')); in main()
120 .create('c')); in main()
125 .create('h')); in main()
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_runners/
Dota_runner_factory.py98 return create(ota_package, ota_sl4a, android_device, ota_tool_class_name,
102 def create(ota_package, function
123 ota_tool = ota_tool_factory.create(ota_tool_class_name, command)

12345678910>>...14