OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BuildInfoFileKey
(Results
1 - 9
of
9
) sorted by null
/tools/tradefederation/core/src/com/android/tradefed/build/
DeviceBuildInfo.java
19
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
32
BuildInfoFileKey
.TESTDIR_IMAGE.getFileKey(),
33
BuildInfoFileKey
.HOST_LINKED_DIR.getFileKey(),
34
BuildInfoFileKey
.TARGET_LINKED_DIR.getFileKey()
85
return getFile(
BuildInfoFileKey
.DEVICE_IMAGE);
93
return getVersion(
BuildInfoFileKey
.DEVICE_IMAGE);
101
setFile(
BuildInfoFileKey
.DEVICE_IMAGE, deviceImageFile, version);
109
return getFile(
BuildInfoFileKey
.USERDATA_IMAGE);
117
return getVersion(
BuildInfoFileKey
.USERDATA_IMAGE);
125
setFile(
BuildInfoFileKey
.USERDATA_IMAGE, userDataFile, version)
[
all
...]
BuildInfoKey.java
23
* IBuildInfo#getFile(
BuildInfoFileKey
)}.
25
public enum
BuildInfoFileKey
{
43
private
BuildInfoFileKey
(String fileKey) {
IBuildInfo.java
18
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
144
* Helper method to retrieve a file with given a {@link
BuildInfoFileKey
}.
146
* @param key the {@link
BuildInfoFileKey
} that is requested.
149
public default File getFile(
BuildInfoFileKey
key) {
173
* Helper method to retrieve a {@link VersionedFile} with a given a {@link
BuildInfoFileKey
}.
175
* @param key The {@link
BuildInfoFileKey
} requested.
178
public default VersionedFile getVersionedFile(
BuildInfoFileKey
key) {
196
* Helper method to retrieve a file version with given a {@link
BuildInfoFileKey
}.
198
* @param key The {@link
BuildInfoFileKey
} requested.
201
public default String getVersion(
BuildInfoFileKey
key)
[
all
...]
BuildInfo.java
18
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
264
public File getFile(
BuildInfoFileKey
key) {
276
public VersionedFile getVersionedFile(
BuildInfoFileKey
key) {
302
public String getVersion(
BuildInfoFileKey
key) {
321
public void setFile(
BuildInfoFileKey
key, File file, String version) {
/tools/tradefederation/core/tests/src/com/android/tradefed/build/
DeviceBuildInfoTest.java
24
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
100
mBuildInfo.setFile(
BuildInfoFileKey
.HOST_LINKED_DIR, mHostLinkedDir, "v1");
113
assertEquals(mHostLinkedDir, copy.getFile(
BuildInfoFileKey
.HOST_LINKED_DIR));
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
PushFilePreparer.java
21
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
111
File targetTestCases = deviceBuild.getFile(
BuildInfoFileKey
.TARGET_LINKED_DIR);
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
PushFilePreparerTest.java
23
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
149
EasyMock.expect(buildInfo.getFile(
BuildInfoFileKey
.TARGET_LINKED_DIR)).andReturn(null);
/tools/tradefederation/core/src/com/android/tradefed/invoker/
InvocationExecution.java
19
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
526
BuildInfoFileKey
.TARGET_LINKED_DIR.getFileKey());
531
BuildInfoFileKey
.HOST_LINKED_DIR.getFileKey());
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
TestInvocationTest.java
22
import com.android.tradefed.build.BuildInfoKey.
BuildInfoFileKey
;
[
all
...]
Completed in 461 milliseconds