Searched refs:manufacturer_string (Results 1 – 14 of 14) sorted by relevance
/AliOS-Things-master/components/SDL2/src/joystick/hidapi/ |
A D | SDL_hidapijoystick.c | 722 char *manufacturer_string = NULL; in HIDAPI_AddDevice() local 725 if (info->manufacturer_string) { in HIDAPI_AddDevice() 726 …manufacturer_string = SDL_iconv_string("UTF-8", "WCHAR_T", (char*)info->manufacturer_string, (SDL_… in HIDAPI_AddDevice() 727 if (!manufacturer_string) { in HIDAPI_AddDevice() 729 …manufacturer_string = SDL_iconv_string("UTF-8", "UCS-2-INTERNAL", (char*)info->manufacturer_string… in HIDAPI_AddDevice() 731 …manufacturer_string = SDL_iconv_string("UTF-8", "UCS-4-INTERNAL", (char*)info->manufacturer_string… in HIDAPI_AddDevice() 746 …me = SDL_CreateJoystickName(device->vendor_id, device->product_id, manufacturer_string, product_st… in HIDAPI_AddDevice() 748 if (manufacturer_string) { in HIDAPI_AddDevice() 749 SDL_free(manufacturer_string); in HIDAPI_AddDevice()
|
/AliOS-Things-master/components/SDL2/src/hidapi/linux/ |
A D | hid.cpp | 37 pDst->manufacturer_string = pSrc->manufacturer_string ? wcsdup( pSrc->manufacturer_string ) : NULL; in CopyHIDDeviceInfo() 135 free( devs->manufacturer_string ); in hid_free_enumeration()
|
A D | hid.c | 609 …cur_dev->manufacturer_string = copy_udev_string(usb_dev, device_string_names[DEVICE_STRING_MANUFAC… in hid_enumerate() 630 cur_dev->manufacturer_string = wcsdup(L""); in hid_enumerate() 664 free(d->manufacturer_string); in hid_free_enumeration()
|
/AliOS-Things-master/components/SDL2/src/joystick/windows/ |
A D | SDL_rawinputjoystick.c | 339 char *manufacturer_string = NULL; in RAWINPUT_AddDevice() local 354 manufacturer_string = WIN_StringToUTF8(string); in RAWINPUT_AddDevice() 365 …me = SDL_CreateJoystickName(device->vendor_id, device->product_id, manufacturer_string, product_st… in RAWINPUT_AddDevice() 367 if (manufacturer_string) { in RAWINPUT_AddDevice() 368 SDL_free(manufacturer_string); in RAWINPUT_AddDevice()
|
/AliOS-Things-master/components/SDL2/src/joystick/darwin/ |
A D | SDL_sysjoystick.c | 426 char manufacturer_string[256]; in GetDeviceInfo() local 480 …if ((!refCF) || (!CFStringGetCString(refCF, manufacturer_string, sizeof(manufacturer_string), kCFS… in GetDeviceInfo() 481 manufacturer_string[0] = '\0'; in GetDeviceInfo() 487 name = SDL_CreateJoystickName(vendor, product, manufacturer_string, product_string); in GetDeviceInfo()
|
/AliOS-Things-master/components/SDL2/src/hidapi/hidapi/ |
A D | hidapi.h | 70 wchar_t *manufacturer_string; member
|
/AliOS-Things-master/components/SDL2/src/hidapi/hidtest/ |
A D | hidtest.cpp | 54 printf(" Manufacturer: %ls\n", cur_dev->manufacturer_string); in main()
|
/AliOS-Things-master/components/SDL2/src/hidapi/android/ |
A D | hid.cpp | 321 pCopy->manufacturer_string = CreateWStringFromWString( pInfo->manufacturer_string ); in CopyHIDDeviceInfo() 330 free( pInfo->manufacturer_string ); in FreeHIDDeviceInfo() 872 pInfo->manufacturer_string = CreateWStringFromJString( env, sManufacturer ); in HID_DEVICE_MANAGER_JAVA_INTERFACE() 1165 wcsncpy( string, pDevice->GetDeviceInfo()->manufacturer_string, maxlen ); in hid_get_manufacturer_string()
|
/AliOS-Things-master/components/SDL2/src/hidapi/ |
A D | SDL_hidapi.c | 411 WCOPY_IF_EXISTS(manufacturer_string) in LIBUSB_CopyHIDDeviceInfo() 433 WCOPY_IF_EXISTS(manufacturer_string) in PLATFORM_CopyHIDDeviceInfo() 616 SDL_free(devs->manufacturer_string); in hid_free_enumeration()
|
/AliOS-Things-master/components/SDL2/src/hidapi/testgui/ |
A D | test.cpp | 251 s += FXString(" ") + device_info->manufacturer_string; in onConnect() 298 s += FXString(" ") + cur_dev->manufacturer_string; in onRescan()
|
/AliOS-Things-master/components/SDL2/src/hidapi/windows/ |
A D | hid.c | 538 cur_dev->manufacturer_string = _wcsdup(wstr); in hid_enumerate() 600 free(d->manufacturer_string); in hid_free_enumeration()
|
/AliOS-Things-master/components/SDL2/src/hidapi/mac/ |
A D | hid.c | 519 cur_dev->manufacturer_string = dup_wcs(buf); in hid_enumerate() 549 free(d->manufacturer_string); in hid_free_enumeration()
|
/AliOS-Things-master/components/SDL2/src/hidapi/libusb/ |
A D | hid.c | 637 cur_dev->manufacturer_string = in hid_enumerate() 743 free(d->manufacturer_string); in hid_free_enumeration()
|
/AliOS-Things-master/components/SDL2/src/hidapi/ios/ |
A D | hid.m | 760 free(d->manufacturer_string); 812 device_info->manufacturer_string = wcsdup( L"Valve Corporation" );
|
Completed in 46 milliseconds