/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/ |
H A D | application_info.h | 251 std::string vendor; member
|
/foundation/multimodalinput/input/test/facility/libinput_interface/src/ |
H A D | libinput_interface.cpp | 351 return (device != nullptr ? device->vendor : 0); in libinput_device_get_id_vendor()
|
/foundation/multimodalinput/input/interfaces/kits/c/input/ |
H A D | oh_input_manager.h | 1604 * @param vendor 出参,指向输入设备厂商信息的指针。 1607 * {@link INPUT_PARAMETER_ERROR} deviceInfo或者vendor是空指针。 1611 Input_Result OH_Input_GetDeviceVendor(Input_DeviceInfo *deviceInfo, int32_t *vendor);
|
/third_party/eudev/hm_src/ |
H A D | keyboard-keys-from-name.h | 555 {"vendor", KEY_VENDOR}, in keyboard_lookup_key()
|
/third_party/alsa-utils/topology/nhlt/intel/dmic/ |
H A D | dmic-internal.h | 318 struct dmic_config_mic_vendor vendor[8]; member 327 /* dmic vendor blob structs */
|
/third_party/backends/backend/ |
H A D | hs2p.h | 162 SANE_Char vendor[9]; /* model name 8+1 */ member 239 * struct with pointers to device/vendor/model names, and a type value
|
H A D | pieusb_scancmd.h | 62 SANE_Char vendor[9]; /* actually 8 bytes, not null-terminated ...PIE ... */ member 95 /* 2nd vendor specific block (36 bytes at offset 96) */
|
H A D | ricoh.c | 143 || strncmp ((char *)ibuf.vendor, "RICOH", 5) != 0 in attach() 221 dev->sane.vendor = "RICOH"; in attach() 235 DBG (5, "dev->sane.vendor = %s\n", dev->sane.vendor); in attach()
|
H A D | epson.c | 88 2003-02-15 Fix problem with "usb <vendor> <product> syntax in config file 2037 s->hw->sane.vendor = "Epson"; in attach() 2121 SANE_Word vendor; in attach() local 2137 vendor = 0x4b8; in attach() 2139 status = sanei_usb_find_devices (vendor, product, attach_one_usb); in attach() 2157 if (sanei_usb_get_vendor_product (s->fd, &vendor, &product) == in attach() 2164 /* check the vendor ID to see if we are dealing with an EPSON device */ in attach() 2165 if (vendor != SANE_EPSON_VENDOR_ID) in attach() 2167 /* this is not a supported vendor ID */ in attach() 2169 "The device at %s is not manufactured by EPSON (vendor i in attach() 2677 int vendor, product; sane_init() local [all...] |
H A D | coolscan.c | 1275 unsigned char vendor[9]; in coolscan_identify_scanner() local 1281 vendor[8] = product[0x10] = version[4] = 0; in coolscan_identify_scanner() 1292 get_inquiry_vendor ((char *)s->buffer, (char *)vendor); in coolscan_identify_scanner() 1296 if (strncmp ("Nikon ", (char *)vendor, 8)) in coolscan_identify_scanner() 1298 DBG (5, "identify_scanner: \"%s\" isn't a Nikon product\n", vendor); in coolscan_identify_scanner() 1302 pp = &vendor[8]; in coolscan_identify_scanner() 1303 vendor[8] = ' '; in coolscan_identify_scanner() 1706 get_inquiry_vendor ((char *)inquiry_block, (char *)s->vendor); in coolscan_get_inquiry_values() 1707 s->vendor[8] = '\0'; in coolscan_get_inquiry_values() 2116 dev->sane.vendor in attach_scanner() [all...] |
/third_party/ltp/testcases/kernel/device-drivers/agp/kernel_space/ |
H A D | tagp.c | 641 .vendor = PCI_ANY_ID, //VENDOR_ID_ATI,
|
/third_party/mesa3d/src/glx/ |
H A D | indirect_glx.c | 71 free((char *) gc->vendor); in indirect_destroy_context()
|
/third_party/libinput/test/ |
H A D | litest-device-keyboard-razer-blackwidow.c | 37 .vendor = 0x1532,
|
H A D | litest-device-keyboard-razer-blade-stealth.c | 35 .vendor = 0x1532,
|
H A D | litest-device-asus-rog-gladius.c | 34 .vendor = 0x0b05,
|
H A D | litest-device-ms-surface-cover.c | 88 .vendor = 0x45e,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_profile.cpp | 118 std::string vendor; member 461 app.vendor, in from_json() 2027 applicationInfo.vendor = configJson.app.vendor; in ToApplicationInfo() 2072 bundleInfo.vendor = applicationInfo.vendor; in ToBundleInfo()
|
H A D | module_profile.cpp | 257 std::string vendor; member 972 app.vendor, in from_json() 1914 applicationInfo.vendor = app.vendor; in ToApplicationInfo() 2006 bundleInfo.vendor = applicationInfo.vendor; in ToBundleInfo()
|
/foundation/multimodalinput/input/frameworks/native/input/ |
H A D | oh_input_manager.cpp | 95 int32_t vendor {-1}; 2329 (*deviceInfo)->vendor = device->GetVendor(); in OH_Input_GetDevice() 2419 Input_Result OH_Input_GetDeviceVendor(Input_DeviceInfo *deviceInfo, int32_t *vendor) in OH_Input_GetDeviceVendor() argument 2423 CHKPR(vendor, INPUT_PARAMETER_ERROR); in OH_Input_GetDeviceVendor() 2424 *vendor = deviceInfo->vendor; in OH_Input_GetDeviceVendor()
|
/third_party/backends/backend/escl/ |
H A D | escl.c | 420 sdev->vendor = get_vendor(cdev->model_name); in convertFromESCLDev() 422 if (!sdev->vendor) in convertFromESCLDev() 423 sdev->vendor = strdup("ESCL"); in convertFromESCLDev() 425 lv = strlen(sdev->vendor) + 1; in convertFromESCLDev() 426 if (!sdev->vendor) { in convertFromESCLDev() 442 free((void*)sdev->vendor); in convertFromESCLDev()
|
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
H A D | bundle_parser.cpp | 332 bundleProfile.vendor = ParseValue(appObject, PROFILE_KEY_VENDOR); in ParseJsonInfo() 333 CHECK_NULL(bundleProfile.vendor, ERR_APPEXECFWK_INSTALL_FAILED_PARSE_VENDOR_ERROR); in ParseJsonInfo() 334 CHECK_LENGTH(strlen(bundleProfile.vendor), MAX_VENDOR_LEN, in ParseJsonInfo()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | sparse-llvm.c | 1300 const char *arch, *vendor, *os, *env, *layout = NULL; in set_target() local 1304 vendor = strtok(NULL, "-"); in set_target() 1326 snprintf(triple, sizeof(triple), "%s-%s-%s-%s", arch, vendor, os, env); in set_target()
|
/foundation/ability/ability_runtime/frameworks/simulator/ability_simulator/src/bundle_parser/ |
H A D | application_info.cpp | 70 const std::string APPLICATION_VENDOR = "vendor"; 196 {APPLICATION_VENDOR, applicationInfo.vendor}, in to_json() 550 applicationInfo.vendor, in from_json()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/cj/src/ |
H A D | bundle_manager_convert.cpp | 626 bundleInfo.vendor = MallocCString(cBundleInfo.vendor); in ConvertBundleInfo()
|
/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/ |
H A D | convert_utils.cpp | 41 const char BUNDLEINFO_JSON_KEY_VENDOR[] = "vendor"; 264 (bundleInfo->vendor != nullptr && in ConvertBundleInfoPartToJson() 265 cJSON_AddStringToObject(root, BUNDLEINFO_JSON_KEY_VENDOR, bundleInfo->vendor) == nullptr)) { in ConvertBundleInfoPartToJson()
|