Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 53) sorted by relevance

123

/tools/tradefederation/core/src/com/android/tradefed/command/remote/
DRemoteManager.java329 private Thread processStartHandover(StartHandoverOp c, JSONObject result) { in processStartHandover()
344 private void processHandoverInitComplete(HandoverInitCompleteOp c, JSONObject result) { in processHandoverInitComplete()
349 private Thread processHandoverComplete(HandoverCompleteOp c, JSONObject result) { in processHandoverComplete()
360 private void processAllocate(AllocateDeviceOp c, JSONObject result) throws JSONException { in processAllocate()
372 private void processFree(FreeDeviceOp c, JSONObject result) throws JSONException { in processFree()
390 private void processAdd(AddCommandOp c, JSONObject result) throws JSONException { in processAdd()
404 private void processAddCommandFile(AddCommandFileOp c, JSONObject result) throws JSONException { in processAddCommandFile()
416 private void processExecCommand(ExecCommandOp c, JSONObject result) throws JSONException { in processExecCommand()
448 private void processGetLastCommandResult(GetLastCommandResultOp c, JSONObject json) in processGetLastCommandResult()
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/utils/
DMsDosDateTimeUtilsTest.java27 Calendar c = Calendar.getInstance(); in packDate() local
50 Calendar c = Calendar.getInstance(); in packTime() local
/tools/tradefederation/core/test_framework/com/android/tradefed/device/metric/
DTraceCmdCollector.java109 CollectingOutputReceiver c = new CollectingOutputReceiver(); in startTracing() local
112 device.executeShellCommand(traceCmd.toString(), c, 1, TimeUnit.SECONDS, 1); in startTracing() local
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DPythonUnitTestRunnerTest.java138 CommandResult c = new CommandResult(); in testCheckPythonVersion_276given270min() local
145 CommandResult c = new CommandResult(); in testCheckPythonVersion_276given331min() local
158 CommandResult c = new CommandResult(); in testCheckPythonVersion_300given276min() local
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/utils/
DMsDosDateTimeUtils.java40 Calendar c = Calendar.getInstance(); in packTime() local
74 Calendar c = Calendar.getInstance(); in packDate() local
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextTypeParameterItem.kt75 val c = typeParameterString[i] in create() constant
111 val c = s[i] in bounds() constant
DTextTypeParameterList.kt69 val c = s[i] in typeParameterStrings() constant
/tools/apksig/src/test/java/com/android/apksig/internal/asn1/
DAsn1BerParserTest.java183 ChoiceWithTwoOptions c = parse("0208ffffffffffffffff", ChoiceWithTwoOptions.class); in testChoiceWithDifferentTypedOptions() local
211 ChoiceWithThreeSequenceOptions c = parse("3000", ChoiceWithThreeSequenceOptions.class); in testChoiceWithSameTypedOptions() local
248 ChoiceWithTwoOptions c = parse(input, ChoiceWithTwoOptions.class); in testPrimitiveIndefiniteLengthEncodingWithGarbage() local
271 SequenceWithAsn1Opaque c = parse(input, SequenceWithAsn1Opaque.class); in testConstructedIndefiniteLengthEncodingWithoutNestedIndefiniteLengthDataValues() local
287 SequenceWithAsn1Opaque c = parse(input, SequenceWithAsn1Opaque.class); in testConstructedIndefiniteLengthEncodingWithNestedIndefiniteLengthDataValues() local
/tools/platform-compat/javatest/android/processor/compat/changeid/
DXmlWriterTest.java47 Change c = new Change.Builder() in testOneChange() local
65 Change c = new Change.Builder() in testSomeChanges() local
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DPythonUnitTestRunner.java120 CommandResult c = runUtil.runTimedCmd(1000, "which", "python"); in getPythonBinary() local
150 protected void checkPythonVersion(CommandResult c) { in checkPythonVersion()
202 CommandResult c = runUtil.runTimedCmd(mTestTimeout, cmd); in doRunTest() local
/tools/metalava/src/main/java/com/android/tools/metalava/doclava1/
DSourcePositionInfo.kt51 val c = str[i] in add() constant
DApiFile.java1083 final char c = mBuf[mPos]; in getToken() local
1168 private static boolean isSpace(char c) { in isSpace()
1172 private static boolean isNewline(char c) { in isNewline()
1176 private static boolean isSeparator(char c, boolean parenIsSep) { in isSeparator()
1185 private static boolean isIdent(char c) { in isIdent()
/tools/apksig/src/test/java/com/android/apksig/util/
DDataSourceTestBase.java49 try (CloseableWithDataSource c = createDataSource("Hello12345")) { in testSize()
57 try (CloseableWithDataSource c = createDataSource("Hello12345")) { in testSlice()
95 try (CloseableWithDataSource c = createDataSource("test1234")) { in testGetByteBuffer()
131 try (CloseableWithDataSource c = createDataSource("test1234")) { in testFeed()
169 try (CloseableWithDataSource c = createDataSource("abcdefghijklmnop")) { in testCopyTo()
DDataSinkTestBase.java48 try (CloseableWithDataSink<T> c = createDataSink()) { in testConsumeFromArray()
76 try (CloseableWithDataSink<T> c = createDataSink()) { in testConsumeFromByteBuffer()
DDataSourceFromRAFChunkTest.java46 try (CloseableWithDataSource c = createDataSource("abcdefg")) { in testFileSizeChangesNotVisible()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DPythonVirtualenvPreparer.java74 CommandResult c = mRunUtil.runTimedCmd(BASE_TIMEOUT * 5, mPip, in installDeps() local
87 CommandResult c = mRunUtil.runTimedCmd(BASE_TIMEOUT * 5, mPip, in installDeps() local
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DFlashingResourcesParser.java95 public FlashingResourcesParser(File deviceImgZipFile, Map<String, Constraint> c) in FlashingResourcesParser()
121 public FlashingResourcesParser(BufferedReader infoReader, Map<String, Constraint> c) in FlashingResourcesParser()
360 Constraint c = null; in parseAndroidInfo() local
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
DIOExceptionConsumer.java44 static <T> Consumer<T> asConsumer(@Nonnull IOExceptionConsumer<T> c) { in asConsumer()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DTableBuilderTest.java79 private String generateString(int len, char c) { in generateString()
/tools/tradefederation/core/tests/src/com/android/tradefed/presubmit/
DDeviceTestsConfigValidation.java73 IConfiguration c = in testConfigsLoad() local
/tools/tradefederation/core/tests/src/com/android/tradefed/clearcut/
DClearcutClientTest.java80 ClearcutClient c = in testDisableClient() local
/tools/dexter/slicer/
Ddex_bytecode.cc33 #define INSTRUCTION_DESCR(o, c, p, format, index, flags, e, vflags) \ argument
124 #define INSTRUCTION_NAME(o, c, pname, f, i, a, e, v) pname, argument
/tools/tradefederation/core/src/com/android/tradefed/util/
DConditionPriorityBlockingQueue.java79 ConditionMatcherPair(IMatcher<T> m, Condition c) { in ConditionMatcherPair()
112 public ConditionPriorityBlockingQueue(Comparator<T> c) { in ConditionPriorityBlockingQueue()
/tools/apksig/src/test/java/com/android/apksig/internal/util/
DHexEncoding.java81 private static int getHexadecimalDigitValue(char c) { in getHexadecimalDigitValue()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DArgsOptionParserTest.java1025 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_string() local
1067 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_stringWithUnavalableKeyStore() local
1082 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_stringWithUnavalableKeyStoreWithKey() local
1103 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_stringWithUnavalableKey() local
1129 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_mapOptions() local
1157 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_mapOptionsSingleValue() local
1189 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_mapOptionsMixedValue() local
1223 IKeyStoreClient c = EasyMock.createNiceMock(IKeyStoreClient.class); in testKeyStore_mapOptionsMixedValue_allKeys() local

123