Searched refs:product (Results 26 - 50 of 64) sorted by relevance

123

/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.cpp65 int16_t vendor, int16_t product,
69 device_name, bustype, vendor, product, version);
91 uidev_.id.product = product;
176 ALOGV(" id.product=0x%04" PRIX16, uidev_.id.product);
64 ConfigureBegin(const char* device_name, int16_t bustype, int16_t vendor, int16_t product, int16_t version) argument
H A DEvdevInjector.h68 int16_t product, int16_t version);
/frameworks/base/data/keyboards/
H A Dkeyboards.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/base/tools/aapt2/
H A DResourceTable_test.cpp143 EXPECT_EQ(std::string("phone"), values[0]->product);
144 EXPECT_EQ(std::string("tablet"), values[1]->product);
H A DDominatorTree_test.cpp34 void VisitTree(const std::string& product,
H A DFormat.proto25 optional string product = 2;
/frameworks/rs/script_api/
H A Drs_vector_math.spec45 summary: Cross product of two vectors
47 Computes the cross product of two vectors.
97 summary: Dot product of two vectors
99 Computes the dot product of two vectors.
H A Drs_quaternion.spec58 summary: Dot product of two quaternions
60 Returns the dot product of two quaternions.
/frameworks/rs/perf-test-scripts/
H A Dget-freq34 echo Device: `adb shell getprop ro.product.model`
H A Dset-gpu-freq42 echo Device: `adb shell getprop ro.product.model`
H A Dset-cpu-freq42 echo Device: `adb shell getprop ro.product.model`
/frameworks/base/services/core/jni/
H A Dcom_android_server_UsbHostManager.cpp76 char *product = usb_device_get_product_name(device, local
84 jstring productName = AndroidRuntime::NewStringLatin1(env, product);
97 free(product);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBaseCluster.java105 double product = 0f;
107 product += vector1[i] * vector2[i];
109 double radian = Math.acos(Math.min(product, 1f));
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbAlsaManager.java401 String product = usbDevice.getProductName();
405 name = product;
406 } else if (product == null || product.isEmpty()) {
409 name = manufacturer + " " + product;
413 properties.putString(MidiDeviceInfo.PROPERTY_PRODUCT, product);
/frameworks/base/core/jni/
H A Dandroid_view_InputDevice.cpp66 static_cast<int32_t>(ident.vendor), static_cast<int32_t>(ident.product),
/frameworks/base/tools/aapt2/optimize/
H A DVersionCollapser.cpp131 config_value->product);
/frameworks/av/services/radio/
H A DHidlUtils.cpp82 strlcpy(properties->product, halProperties->product.c_str(), RADIO_STRING_LEN_MAX);
H A DRadioService.cpp76 ALOGI("loaded default module %s, ver %s, handle %d", properties.product,
194 strlcpy(properties->product, halProperties->product,
392 ALOGV("addClient() %p config %p product %s", this, config, mProperties.product);
/frameworks/base/tools/bit/
H A Dmake.cpp78 sniff_device_name(const string& buildOut, const string& product) argument
80 string match("ro.build.product=" + product);
82 string base(buildOut + "/target/product");
141 string filename(string(buildOut + "/target/product/") + device + "/module-info.json");
/frameworks/av/media/mtp/
H A DMtpDevice.cpp49 static bool isMtpDevice(uint16_t vendor, uint16_t product) {
51 if (vendor == 0x0781 && product == 0x74c2)
54 if (vendor == 0x04e8 && product == 0x503c)
124 // look for special cased devices based on vendor/product ID
127 uint16_t product = usb_device_get_product_id(device);
128 if (!isMtpDevice(vendor, product)) {
/frameworks/base/tools/aapt2/link/
H A DTableMerger.cpp291 src_config_value->config, src_config_value->product);
304 dst_entry->FindOrCreateValue(src_config_value->config, src_config_value->product);
/frameworks/base/tools/aapt2/proto/
H A DTableProtoSerializer.cpp260 if (!config_value->product.empty()) {
261 pb_config_value->mutable_config()->set_product(config_value->product);
/frameworks/av/media/libmedia/
H A DMediaProfiles.cpp478 int product = mCamcorderProfiles[i]->mVideoCodec->mFrameWidth * local
506 if ((j % 2 == 0 && product > info->mResolutionProduct) || // low
507 (j % 2 != 0 && product < info->mResolutionProduct)) { // high
535 info->mResolutionProduct = product;
/frameworks/base/tools/aapt2/split/
H A DTableSplitter.cpp266 config_value->product);
/frameworks/native/services/inputflinger/
H A DEventHub.cpp588 identifier.product);
597 if (identifier.vendor == 0 && identifier.product == 0) {
598 // If we don't know the vendor and product id, then the device is probably
1115 identifier.product = inputId.product;
1152 " product %04x\n"
1154 identifier.bus, identifier.vendor, identifier.product, identifier.version);
1699 "product=0x%04x, version=0x%04x\n",
1701 device->identifier.product, device->identifier.version);

Completed in 558 milliseconds

123