Searched refs:columnValues (Results 1 – 3 of 3) sorted by relevance
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/contentprovider/ |
D | ContentProviderHandler.java | 358 HashMap<String, String> columnValues = new HashMap<>(); in parseQueryResultRow() local 371 columnValues.put(keyValue[0], keyValue[1]); in parseQueryResultRow() 375 return columnValues; in parseQueryResultRow() 410 HashMap<String, String> columnValues = parseQueryResultRow(row); in pullDirInternal() local 411 boolean isDirectory = Boolean.valueOf(columnValues.get(COLUMN_DIRECTORY)); in pullDirInternal() 412 String name = columnValues.get(COLUMN_NAME); in pullDirInternal() 417 String path = columnValues.get(COLUMN_ABSOLUTE_PATH); in pullDirInternal()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | WifiCommandUtil.java | 87 String[] columnValues = scanResultLines[i].split("\\s+"); in parseScanResults() local 88 if (columnValues.length != columnNames.length) { in parseScanResults() 95 scanResult.addInfo(columnNames[j], columnValues[j]); in parseScanResults()
|
/tools/tradefederation/core/javatests/com/android/tradefed/device/contentprovider/ |
D | ContentProviderHandlerTest.java | 430 HashMap<String, String> columnValues = mProvider.parseQueryResultRow(row); in testParseQueryResultRow() local 433 columnValues.get(ContentProviderHandler.COLUMN_NAME), "name spaced with , ,comma"); in testParseQueryResultRow() 435 columnValues.get(ContentProviderHandler.COLUMN_ABSOLUTE_PATH), in testParseQueryResultRow() 437 assertEquals(columnValues.get(ContentProviderHandler.COLUMN_DIRECTORY), "true"); in testParseQueryResultRow() 438 assertEquals(columnValues.get(ContentProviderHandler.COLUMN_MIME_TYPE), "NULL"); in testParseQueryResultRow() 439 assertEquals(columnValues.get(ContentProviderHandler.COLUMN_METADATA), "NULL"); in testParseQueryResultRow()
|