/system/connectivity/shill/ |
technology_unittest.cc | 77 vector<Technology::Identifier> technologies; local 81 "", &technologies, &error)); 82 EXPECT_THAT(technologies, ElementsAre()); 86 "ethernet", &technologies, &error)); 87 EXPECT_THAT(technologies, ElementsAre(Technology::kEthernet)); 91 "ethernet,vpn", &technologies, &error)); 92 EXPECT_THAT(technologies, ElementsAre(Technology::kEthernet, 97 "wifi,ethernet,vpn", &technologies, &error)); 98 EXPECT_THAT(technologies, ElementsAre(Technology::kWifi, 106 vector<Technology::Identifier> technologies; local 127 vector<Technology::Identifier> technologies; local [all...] |
device_info_unittest.cc | 391 vector<string> technologies = device_info_.GetUninitializedTechnologies(); local 394 EXPECT_THAT(set<string>(technologies.begin(), technologies.end()), 398 EXPECT_THAT(set<string>(technologies.begin(), technologies.end()), 402 technologies = device_info_.GetUninitializedTechnologies(); 405 EXPECT_THAT(set<string>(technologies.begin(), technologies.end()), 409 technologies = device_info_.GetUninitializedTechnologies(); 412 EXPECT_THAT(set<string>(technologies.begin(), technologies.end()) [all...] |
manager.cc | 957 vector<Technology::Identifier> technologies; local [all...] |
manager_unittest.cc | 2796 vector<string> technologies = manager()->AvailableTechnologies(&error); local 2860 vector<string> technologies = manager()->ConnectedTechnologies(&error); local [all...] |
/packages/apps/Nfc/nxp/jni/ |
com_android_nfc.cpp | 260 jint* technologies = e->GetIntArrayElements(techTypes, 0); local 261 if (technologies != NULL) { 262 connectedTech = technologies[connectedTechIndex]; 263 e->ReleaseIntArrayElements(techTypes, technologies, JNI_ABORT); 411 int technologies[MAX_NUM_TECHNOLOGIES]; local 428 index = addTechIfNeeded(technologies, handles, libnfctypes, index, 434 index = addTechIfNeeded(technologies, handles, libnfctypes, index, 436 index = addTechIfNeeded(technologies, handles, libnfctypes, index, 441 index = addTechIfNeeded(technologies, handles, libnfctypes, 449 index = addTechIfNeeded(technologies, handles, libnfctypes [all...] |
com_android_nfc_NativeNfcTag.cpp | 553 // those. Currently those are the Jewel and Iso15693 technologies. 716 jint* technologies = NULL; local [all...] |
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/ |
NativeNfcTag.java | 63 // could stay present. Usually all technologies are on the 398 // No key needed for other technologies 525 // This method exists to "patch in" the ndef technologies, 742 // Try to find NDEF on any of the technologies. 743 int[] technologies = getTechList(); local 751 for (int techIndex = 0; techIndex < technologies.length; techIndex++) { 759 status = connectWithStatus(technologies[techIndex]);
|
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/ |
NativeNfcTag.java | 61 // could stay present. Usually all technologies are on the 381 // No key needed for other technologies 516 // This method exists to "patch in" the ndef technologies, 727 // Try to find NDEF on any of the technologies. 728 int[] technologies = getTechList(); local 736 for (int techIndex = 0; techIndex < technologies.length; techIndex++) { 744 status = connectWithStatus(technologies[techIndex]);
|