HomeSort by relevance Sort by last modified time
    Searched refs:interfaceName (Results 1 - 25 of 333) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/hwservicemanager/
Vintf.h 10 // interfaceName has the format "android.hardware.foo@1.0::IFoo"
13 vintf::Transport getTransport(const std::string &interfaceName,
Vintf.cpp 25 vintf::Transport getTransport(const std::string &interfaceName, const std::string &instanceName) {
26 FQName fqName(interfaceName);
28 LOG(DEBUG) << "getTransport: " << interfaceName << " is not a valid fully-qualified name.";
HidlService.h 25 HidlService(const std::string &interfaceName,
29 HidlService(const std::string &interfaceName,
32 interfaceName,
AccessControl.cpp 14 const char* interfaceName;
75 ad.interfaceName = interface;
105 if (!ad || !ad->interfaceName) {
110 snprintf(buf, len, "interface=%s pid=%d", ad->interfaceName, ad->pid);
HidlService.cpp 14 const std::string &interfaceName,
18 : mInterfaceName(interfaceName),
  /frameworks/base/tests/UsbHostExternalManagmentTest/UsbHostExternalManagmentTestApp/src/com/android/hardware/usb/externalmanagementtest/
UsbUtil.java 50 String interfaceName = usbInterface.getName();
52 if (AOAP_INTERFACE_NAME.equals(interfaceName) ||
53 ADB_INTERFACE_NAME.equals(interfaceName) ||
54 MTP_INTERFACE_NAME.equals(interfaceName)) {
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/usb/
UsbUtil.java 53 String interfaceName = usbInterface.getName();
56 if (AOAP_INTERFACE_NAME.equals(interfaceName)
57 || ADB_INTERFACE_NAME.equals(interfaceName)
58 || MTP_INTERFACE_NAME.equals(interfaceName)
  /frameworks/native/cmds/lshal/
TableEntry.h 47 std::string interfaceName;
57 return a.interfaceName < b.interfaceName;
ListCommand.cpp 143 std::string packageName = packageEntry.interfaceName;
152 FQName interfaceName{splitFirst(interfaceEntry.interfaceName, '/').first};
153 if (!interfaceName.isValid()) {
156 if (interfaceName.getPackageAndVersion() == fqPackageName) {
164 const std::string &interfaceName,
172 mOut << std::setw(80) << interfaceName << "\t";
213 std::string fqInstanceName = entry.interfaceName;
232 std::string interfaceName =
276 hal->interfaces[interfaceName].name = interfaceName
    [all...]
Lshal.cpp 133 const std::string &interfaceName,
140 hardware::Return<sp<IBase>> retBase = serviceManager()->get(interfaceName, instanceName);
143 std::string msg = "Cannot get " + interfaceName + "/" + instanceName + ": "
152 std::string msg = interfaceName + "/" + instanceName + " does not exist, or "
177 std::string msg = "debug() FAILED on " + interfaceName + "/" + instanceName + ": "
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
MissingBindingSuggestionsTest.java 41 private static JavaFileObject emptyInterface(String interfaceName) {
42 return JavaFileObjects.forSourceLines("test." + interfaceName,
47 "interface " + interfaceName +" {}");
  /system/libhidl/transport/include/hidl/
ServiceManagement.h 44 const std::string &interfaceName,
  /system/tools/hidl/include_hash/hidl-hash/
Hash.h 29 // returns matching hashes of interfaceName in path
31 // interfaceName is something like android.hardware.foo@1.0::IFoo
33 const std::string &interfaceName,
  /packages/services/Car/service/src/com/android/car/
CarService.java 156 private IVehicle getVehicleWithTimeout(long waitMilliseconds, @Nullable String interfaceName) {
157 IVehicle vehicle = getVehicle(interfaceName);
166 vehicle = getVehicle(interfaceName);
177 private static IVehicle getVehicle(@Nullable String interfaceName) {
179 boolean anyVersion = interfaceName == null || interfaceName.isEmpty();
181 if (ENABLE_VEHICLE_HAL_V2_1 && (anyVersion || IVHAL_21.equals(interfaceName))) {
186 if (vehicle == null && (anyVersion || IVHAL_20.equals(interfaceName))) {
  /development/tools/apkcheck/src/com/android/apkcheck/
ClassInfo.java 208 public void addInterface(String interfaceName) {
209 mSuperNames.add(interfaceName);
269 String interfaceName = TypeUtils.ambiguousToBinaryName(mSuperNames.get(i),
271 ClassInfo classInfo = lookupClass(interfaceName, apiList);
273 ApkCheck.apkWarning("Class " + interfaceName +
  /system/libvintf/include/vintf/
HalManifest.h 53 const std::string &interfaceName, const std::string &instanceName) const;
69 const std::string &halName, const std::string &interfaceName) const;
71 // Convenience method for checking if instanceName is in getInstances(halName, interfaceName)
73 const std::string &interfaceName, const std::string &instanceName) const;
  /system/netd/server/
MDnsSdListener.h 117 void serviceRegister(SocketClient *cli, int requestId, const char *interfaceName,
122 const char *interfaceName, const char *serviceName, const char *regType,
127 void getAddrInfo(SocketClient *cli, int requestId, const char *interfaceName,
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWebView.java 100 public void addJavascriptInterface(Object obj, String interfaceName) {
101 javascriptInterfaces.put(interfaceName, obj);
104 public Object getJavascriptInterface(String interfaceName) {
105 return javascriptInterfaces.get(interfaceName);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ConnectivityEvents.java 140 String interfaceName) {
142 mInterfaceName = interfaceName;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareDataPathStateManager.java 178 public void onInterfaceCreated(String interfaceName) {
179 if (VDBG) Log.v(TAG, "onInterfaceCreated: interfaceName=" + interfaceName);
181 if (mInterfaces.contains(interfaceName)) {
182 Log.w(TAG, "onInterfaceCreated: already contains interface -- " + interfaceName);
185 mInterfaces.add(interfaceName);
191 public void onInterfaceDeleted(String interfaceName) {
192 if (VDBG) Log.v(TAG, "onInterfaceDeleted: interfaceName=" + interfaceName);
194 if (!mInterfaces.contains(interfaceName)) {
    [all...]
  /system/libvintf/
HalManifest.cpp 120 const std::string &interfaceName, const std::string &instanceName) const {
128 auto it = hal->interfaces.find(interfaceName);
131 << interfaceName << "' in " << package << "@" << to_string(v);
138 << package << "@" << to_string(v) << "::" << interfaceName;
144 << package << "@" << v << "::" << interfaceName << "/" << instanceName;
163 const std::string &halName, const std::string &interfaceName) const {
166 auto it = hal->interfaces.find(interfaceName);
175 const std::string &interfaceName, const std::string &instanceName) const {
176 const auto &instances = getInstances(halName, interfaceName);
  /system/tools/hidl/
generateCpp.cpp 135 static void declareGetService(Formatter &out, const std::string &interfaceName, bool isTry) {
138 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
140 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
144 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
149 out << "static ::android::sp<" << interfaceName << "> " << functionName << "("
153 static void declareServiceManagerInteractions(Formatter &out, const std::string &interfaceName) {
154 declareGetService(out, interfaceName, true /* isTry */);
155 declareGetService(out, interfaceName, false /* isTry */);
171 const std::string interfaceName = fqName.getInterfaceName();
175 << "::android::sp<" << interfaceName << "> " << interfaceName << "::" << functionName << "(
    [all...]
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 337 void startClatd(String interfaceName);
342 void stopClatd(String interfaceName);
347 boolean isClatdStarted(String interfaceName);
  /prebuilts/tools/common/api-generator/
api-generator-25.0.0.jar 
  /system/libhidl/transport/manager/1.0/
IServiceManager.hal 142 string interfaceName;

Completed in 1185 milliseconds

1 2 3 4 5 6 7 8 91011>>