Home
last modified time | relevance | path

Searched defs:options (Results 1 – 25 of 81) sorted by relevance

1234

/tools/tradefederation/core/javatests/com/android/tradefed/device/
DDeviceSelectionOptionsTest.java99 DeviceSelectionOptions options = getDeviceSelectionOptionsWithEnvVar(DEVICE_ENV_SERIAL); in testGetSerials() local
109 DeviceSelectionOptions options = getDeviceSelectionOptionsWithEnvVar(DEVICE_ENV_SERIAL); in testGetSerials_envVariable_nullDevice() local
120 DeviceSelectionOptions options = getDeviceSelectionOptionsWithEnvVar(DEVICE_ENV_SERIAL); in testGetSerials_envVariable_FastbootDevice() local
130 DeviceSelectionOptions options = getDeviceSelectionOptionsWithEnvVar(DEVICE_ENV_SERIAL); in testGetSerials_envVariable_FastbootDevice_noMatch() local
142 DeviceSelectionOptions options = getDeviceSelectionOptionsWithEnvVar(DEVICE_ENV_SERIAL); in testGetSerialsDoesNotOverride() local
157 DeviceSelectionOptions options = getDeviceSelectionOptionsWithEnvVar(null); in testGetSerialsWithNoEnvValue() local
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
DAlignmentTest.java56 ZFileOptions options = new ZFileOptions(); in addAlignedFile() local
58 try (ZFile zf = new ZFile(newZFile, options)) { in addAlignedFile() argument
72 ZFileOptions options = new ZFileOptions(); in addNonAlignedFile() local
74 try (ZFile zf = new ZFile(newZFile, options)) { in addNonAlignedFile() argument
DZFileSortTest.java65 private void setupZFile(@Nullable ZFileOptions options) throws Exception { in setupZFile()
145 ZFileOptions options = new ZFileOptions(); in autoSort() local
190 ZFileOptions options = new ZFileOptions(); in sortFilesWithAlignment() local
DZFileTest.java761 ZFileOptions options = new ZFileOptions(); in extraDirectoryOffsetNonEmptyFile() local
764 try (ZFile zipNoOffset = new ZFile(zipNoOffsetFile, options); in extraDirectoryOffsetNonEmptyFile() argument
1007 ZFileOptions options = new ZFileOptions(); in zipMemoryUsageIsZeroAfterClose() local
1009 try (ZFile zip = new ZFile(zipFile, options)) { in zipMemoryUsageIsZeroAfterClose() argument
1027 ZFileOptions options = new ZFileOptions(); in unusedZipAreasAreClearedOnWrite() local
1029 try (ZFile zf = new ZFile(zipFile, options)) { in unusedZipAreasAreClearedOnWrite() argument
1066 ZFileOptions options = new ZFileOptions(); in deferredCompression() local
1081 try (ZFile zip = new ZFile(zipFile, options)) { in deferredCompression() argument
1439 ZFileOptions options = new ZFileOptions(); in detectIncorrectCRC32InLocalHeader() local
1441 try (ZFile zf = new ZFile(zipFile, options)) { in detectIncorrectCRC32InLocalHeader() argument
[all …]
/tools/repohooks/rh/
Dhooks.py340 def check_custom(project, commit, _desc, diff, options=None, **kwargs): argument
346 def check_aosp_license(project, commit, _desc, diff, options=None): argument
386 def check_bpfmt(project, commit, _desc, diff, options=None): argument
413 def check_checkpatch(project, commit, _desc, diff, options=None): argument
422 def check_clang_format(project, commit, _desc, diff, options=None): argument
436 def check_google_java_format(project, commit, _desc, _diff, options=None): argument
469 def check_ktfmt(project, commit, _desc, diff, options=None): argument
500 def check_commit_msg_bug_field(project, commit, desc, _diff, options=None): argument
526 def check_commit_msg_changeid_field(project, commit, desc, _diff, options=None): argument
578 options=None): argument
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DRemoteFileUtil.java48 TestDeviceOptions options, in fetchRemoteFile()
83 TestDeviceOptions options, in fetchRemoteFile()
113 TestDeviceOptions options, in fetchRemoteDir()
142 TestDeviceOptions options, in fetchRemoteDir()
181 TestDeviceOptions options, in doesRemoteFileExist()
212 TestDeviceOptions options, in pushFileToRemote()
231 TestDeviceOptions options, in internalScpExec()
DRemoteSshUtil.java44 TestDeviceOptions options, in remoteSshCommandExec()
77 TestDeviceOptions options, in remoteSshCommandExec()
DCommonLogRemoteFileUtil.java210 TestDeviceOptions options, in fetchCommonFiles()
279 GceAvdInfo gceAvd, TestDeviceOptions options, IRunUtil runUtil) { in isRemoteGceReachableBySsh()
294 GceAvdInfo gceAvd, TestDeviceOptions options, IRunUtil runUtil, String... command) { in isRemoteGceReachableBySsh()
327 TestDeviceOptions options, in logRemoteCommandOutput()
363 TestDeviceOptions options, in fetchTombstones()
432 TestDeviceOptions options) { in pullCommonCvdLogs()
480 TestDeviceOptions options, in logRemoteFile()
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/shard/
DShardHelperTest.java129 CommandOptions options = new CommandOptions(); in testSplitWithShardCount() local
159 CommandOptions options = new CommandOptions(); in testSplit_noShardCount() local
188 CommandOptions options = new CommandOptions(); in testSplitWithShardCount_notEnoughTest() local
231 CommandOptions options = new CommandOptions(); in testCloneStatusChecker() local
278 CommandOptions options = new CommandOptions(); in testCloneMetricCollector() local
350 CommandOptions options = new CommandOptions(); in testClone_withKeystore() local
385 CommandOptions options = new CommandOptions(); in testSplitWithTokens() local
426 CommandOptions options = new CommandOptions(); in testSplitWithMultiDevices() local
DStrictShardHelperTest.java120 CommandOptions options = new CommandOptions(); in testShardConfig_internal() local
150 CommandOptions options = new CommandOptions(); in testShardConfig_internal_shardIndex() local
176 CommandOptions options = new CommandOptions(); in testShardConfig_internal_shardIndex_notShardable_shard0() local
207 CommandOptions options = new CommandOptions(); in testShardConfig_internal_shardIndex_notShardable_shard1() local
314 CommandOptions options = new CommandOptions(); in testShard() local
332 CommandOptions options = new CommandOptions(); in createITestSuiteList() local
586 CommandOptions options = new CommandOptions(); in testSuite_withAllInterfaces() local
737 CommandOptions options = new CommandOptions(); in testDynamicShardEnabled() local
779 CommandOptions options = new CommandOptions(); in testDynamicShardDisabled() local
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zfile/
DApkZFileCreatorFactory.java33 private final ZFileOptions options; field in ApkZFileCreatorFactory
40 public ApkZFileCreatorFactory(@Nonnull ZFileOptions options) { in ApkZFileCreatorFactory()
DZFiles.java65 public static ZFile apk(@Nonnull File f, @Nonnull ZFileOptions options) throws IOException { in apk()
94 @Nonnull ZFileOptions options, in apk()
/tools/tradefederation/core/javatests/com/android/tradefed/device/metric/
DHostStatsdMetricCollectorTest.java75 OptionSetter options = new OptionSetter(mCollector); in setUp() local
89 OptionSetter options = new OptionSetter(mCollector); in testCollect_perTest() local
112 OptionSetter options = new OptionSetter(mCollector); in testCollect_testFail() local
/tools/tradefederation/core/javatests/com/android/tradefed/device/cloud/
DCommonLogRemoteFileUtilTest.java55 TestDeviceOptions options = new TestDeviceOptions(); in testFetchCommonFilesWithLogsEntries() local
76 TestDeviceOptions options = new TestDeviceOptions(); in testFetchCommonFilesWithoutLogsEntries() local
/tools/netsim/src/backend/
Dpacket_streamer_client.cc77 NetsimdOptions options) { in RunNetsimd()
109 std::shared_ptr<grpc::Channel> GetChannel(NetsimdOptions options) { in GetChannel()
134 std::shared_ptr<grpc::Channel> CreateChannel(NetsimdOptions options) { in CreateChannel()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterClient.java103 final Map<String, Object> options = new HashMap<>(); in leaseHostCommands() local
143 final Map<String, Object> options = new HashMap<>(); in getTestEnvironment() local
160 final Map<String, Object> options = new HashMap<>(); in getTestResources() local
181 final Map<String, Object> options = new HashMap<>(); in getTestContext() local
201 final Map<String, Object> options = new HashMap<>(); in updateTestContext() local
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DRemoteInvocationExecution.java154 TestDeviceOptions options = device.getOptions(); in customizeDevicePreInvocation() local
174 TestDeviceOptions options = device.getOptions(); in runTests() local
375 TestDeviceOptions options, in runRemote()
501 TestDeviceOptions options, in isStillRunning()
615 private String getRemoteMainDir(TestDeviceOptions options) { in getRemoteMainDir()
623 private void resetAdb(GceAvdInfo info, TestDeviceOptions options, IRunUtil runUtil) { in resetAdb()
642 GceAvdInfo info, TestDeviceOptions options, IRunUtil runUtil, ITestLogger logger) { in collectAdbLogs()
795 TestDeviceOptions options, in fetchAndProcessResults()
836 TestDeviceOptions options, in fetchRemoteAndLogFile()
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/google/protobuf/
Ddescriptor.proto75 optional FileOptions options = 8; field
106 optional MessageOptions options = 7; field
180 optional FieldOptions options = 8; field
194 optional EnumOptions options = 3; field
202 optional EnumValueOptions options = 3; field
210 optional ServiceOptions options = 3; field
222 optional MethodOptions options = 4; field
/tools/tradefederation/core/src/com/android/tradefed/util/
DRestApiHelper.java90 String method, String[] uriParts, Map<String, Object> options, JSONObject data) in execute()
118 public GenericUrl buildQueryUri(String[] uriParts, Map<String, Object> options) { in buildQueryUri()
DIRestApiHelper.java39 String method, String[] uriParts, Map<String, Object> options, JSONObject data) in execute()
/tools/tradefederation/core/javatests/com/android/tradefed/sandbox/
DTradefedSandboxTest.java303 SandboxOptions options = new SandboxOptions(); in testSandboxOptions() local
330 SandboxOptions options = new SandboxOptions(); in testSandboxOptions_exclusion() local
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DIManagedTestDeviceFactory.java35 public IManagedTestDevice createRequestedDevice(IDevice idevice, IDeviceSelection options); in createRequestedDevice()
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/cli/common/
DBaseOptionGroupTest.kt87 val options: O, in removeBoilerplate() constant in com.android.tools.metalava.cli.common.BaseOptionGroupTest.Result
160 val options by factory() constant
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/
DInvocationExecutionTest.java389 TestDeviceOptions options = mock(TestDeviceOptions.class); in testDoSetup() local
441 TestDeviceOptions options = mock(TestDeviceOptions.class); in testDoTearDown() local
483 TestDeviceOptions options = mock(TestDeviceOptions.class); in testDoTearDown_multiDevice() local
545 TestDeviceOptions options = mock(TestDeviceOptions.class); in testDoTearDown_logger() local
598 TestDeviceOptions options = mock(TestDeviceOptions.class); in testDoTearDown_exception() local
/tools/security/fuzzing/llm/xmlreader_fuzzer/
DXmlRead_Fd_Fuzzer.cpp37 int options = stream.ConsumeIntegral<int>(); in LLVMFuzzerTestOneInput() local

1234