Searched refs:vendor (Results 1 - 25 of 60) sorted by relevance

123

/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
H A DMDnsUtils.java49 String vendor;
52 vendor = getString(attributes.get(ATTRIBUTE__MFG));
53 if (!TextUtils.isEmpty(vendor)) return vendor;
54 vendor = getString(attributes.get(ATTRIBUTE__USB_MFG));
55 if (!TextUtils.isEmpty(vendor)) return vendor;
H A DServiceListener.java46 boolean matchesCriteria(String vendor, NsdServiceInfo serviceInfo); argument
78 String vendor = MDnsUtils.getVendor(nsdServiceInfo);
79 if (vendor == null) vendor = "";
82 if (vendor.equalsIgnoreCase(vendorValues)) {
83 vendor = entry.getValue().mVendorID;
89 if ((vendor != entry.getValue().mVendorID) &&
91 vendor = entry.getValue().mVendorID;
95 if (vendor == entry.getValue().mVendorID) break;
98 if (TextUtils.isEmpty(vendor)) {
[all...]
H A DServiceRecommendationPlugin.java84 public boolean matchesCriteria(String vendor, NsdServiceInfo nsdServiceInfo) { argument
85 return TextUtils.equals(vendor, mVendorInfo.mVendorID);
H A DHPRecommendationPlugin.java87 public boolean matchesCriteria(String vendor, NsdServiceInfo nsdServiceInfo) { argument
88 if (!TextUtils.equals(vendor, mVendorInfo.mVendorID)) return false;
/frameworks/av/media/libeffects/data/
H A Daudio_effects.conf13 #path /vendor/lib/soundfx/libeffectproxy.so
18 #path /vendor/lib/soundfx/libswwrapper.so
23 #path /vendor/lib/soundfx/libhwwrapper.so
27 path /vendor/lib/soundfx/libbundlewrapper.so
30 path /vendor/lib/soundfx/libreverbwrapper.so
33 path /vendor/lib/soundfx/libvisualizer.so
36 path /vendor/lib/soundfx/libdownmix.so
39 path /vendor/lib/soundfx/libldnhncr.so
42 path /vendor/lib/soundfx/libdynproc.so
50 # path /vendor/li
[all...]
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/xerox/
H A DMDnsUtils.java49 String vendor;
52 vendor = getString(attributes.get(ATTRIBUTE__MFG));
53 if (!TextUtils.isEmpty(vendor)) return vendor;
54 vendor = getString(attributes.get(ATTRIBUTE__USB_MFG));
55 if (!TextUtils.isEmpty(vendor)) return vendor;
H A DServiceResolver.java162 String vendor = MDnsUtils.getVendor(nsdServiceInfo);
163 if (vendor == null) vendor = "";
166 if (vendor.equalsIgnoreCase(vendorValues)) {
167 vendor = mVendorInfo.mVendorID;
172 if ((vendor != mVendorInfo.mVendorID) &&
174 vendor = mVendorInfo.mVendorID;
177 if (!(vendor == mVendorInfo.mVendorID)) {
/frameworks/native/services/sensorservice/hidl/
H A Dutils.cpp34 const String8& vendor = src.getVendor(); local
36 dst.vendor = hidl_string{vendor.string(), vendor.size()};
/frameworks/av/drm/mediacas/plugins/clearkey/tests/
H A DAndroid.mk30 -Wl,--rpath,\$${ORIGIN}/../../../system/vendor/lib/mediacas -Wl,--enable-new-dtags
/frameworks/av/drm/libmediadrm/
H A DPluginMetricsReporting.cpp70 const String8& vendor,
74 String8 name = String8::format("drm.vendor.%s.%s",
75 sanitize(vendor).c_str(),
69 reportDrmPluginMetrics(const std::string& b64EncodedMetrics, const String8& vendor, const String8& description, const String8& appPackageName) argument
/frameworks/base/telephony/java/android/telephony/mbms/vendor/
H A DIMbmsStreamingService.aidl17 package android.telephony.mbms.vendor;
H A DIMbmsDownloadService.aidl17 package android.telephony.mbms.vendor;
H A DVendorUtils.java17 package android.telephony.mbms.vendor;
/frameworks/base/tests/privapp-permissions/
H A DAndroid.mk22 LOCAL_MANIFEST_FILE := vendor/AndroidManifest.xml
31 LOCAL_SRC_FILES:= vendor/privapp-permissions-test.xml
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.cpp45 void GLExtensions::initWithGLStrings(GLubyte const* vendor, GLubyte const* renderer, argument
47 mVendor = (char const*)vendor;
/frameworks/native/libs/input/
H A DInputDevice.cpp60 if (deviceIdentifier.vendor !=0 && deviceIdentifier.product != 0) {
62 // Try vendor product version.
65 deviceIdentifier.vendor, deviceIdentifier.product,
73 // Try vendor product.
76 deviceIdentifier.vendor, deviceIdentifier.product),
92 // Treblized input device config files will be located /odm/usr or /vendor/usr.
93 const char *rootsForPartition[] {"/odm", "/vendor", getenv("ANDROID_ROOT")};
/frameworks/base/libs/hwui/tests/scripts/
H A Dprep_taieye.sh6 adb shell stop vendor.perfd
/frameworks/native/include/input/
H A DInputDevice.h30 bus(0), vendor(0), product(0), version(0) {
38 uint16_t vendor; member in struct:android::InputDeviceIdentifier
148 * names to try based on the device name, vendor, product, and version.
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp34 .vendor = "AOSP",
120 .vendor = "AOSP",
H A DCorrectedGyroSensor.cpp43 .vendor = "AOSP",
H A DGravitySensor.cpp42 .vendor = "AOSP",
/frameworks/av/services/mediacodec/
H A DAndroid.mk55 # TODO(b/72343507): eliminate the need for manually adding .vendor suffix. This should be done
59 $(eval _vendor_suffix := $(if $(BOARD_VNDK_VERSION),.vendor))\
/frameworks/base/core/java/android/os/
H A DBuild.java1001 final String vendor = SystemProperties.get("ro.vendor.build.fingerprint");
1013 if (!TextUtils.isEmpty(vendor)) {
1014 if (!Objects.equals(system, vendor)) {
1016 + " but vendor reported " + vendor);
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mopria/
H A DMopriaRecommendationPlugin.java43 public boolean matchesCriteria(String vendor, NsdServiceInfo nsdServiceInfo) { argument
/frameworks/base/telephony/java/android/telephony/mbms/
H A DUriPathPair.java25 import android.telephony.mbms.vendor.VendorUtils;

Completed in 215 milliseconds

123