Searched refs:name (Results 1 - 25 of 178) sorted by relevance

12345678

/hardware/invensense/libsensors_iio/software/core/mllite/linux/
H A Dml_sysfs_helper.h22 int find_type_by_name(const char *name, const char *type);
23 inv_error_t inv_get_sysfs_path(char *name);
24 inv_error_t inv_get_sysfs_abs_path(char *name);
25 inv_error_t inv_get_dmpfile(char *name);
26 inv_error_t inv_get_chip_name(char *name);
28 inv_error_t inv_get_handler_number(const char *name, int *num);
29 inv_error_t inv_get_input_number(const char *name, int *num);
30 inv_error_t inv_get_iio_trigger_path(char *name);
31 inv_error_t inv_get_iio_device_node(char *name);
H A Dml_sysfs_helper.c40 * find_type_by_name() - function to match top level types by name
41 * @name: top level type instance name
46 int find_type_by_name(const char *name, const char *type) argument
80 sprintf(filename, "%s%s%d/name",
89 if (strcmp(name, thisname) == 0)
101 static int parsing_proc_input(int mode, char *name){ argument
145 if(!memcmp(&line[i], name, strlen(name))){
294 * @unsigned char *name
314 inv_get_sysfs_path(char *name) argument
322 inv_get_sysfs_abs_path(char *name) argument
336 inv_get_dmpfile(char *name) argument
351 inv_get_chip_name(char *name) argument
367 inv_get_handler_number(const char *name, int *num) argument
385 inv_get_input_number(const char *name, int *num) argument
402 inv_get_iio_trigger_path(char *name) argument
417 inv_get_iio_device_node(char *name) argument
[all...]
/hardware/libhardware_legacy/include/hardware_legacy/
H A Dqemu_tracing.h26 int qemu_add_mapping(unsigned int addr, const char *name);
/hardware/qcom/audio/legacy/alsa_sound/
H A DALSAControl.cpp54 status_t ALSAControl::get(const char *name, unsigned int &value, int index) argument
63 ctl = mixer_get_control(mHandle, name, index);
71 status_t ALSAControl::set(const char *name, unsigned int value, int index) argument
75 ALOGD("set:: name %s value %d index %d", name, value, index);
82 ctl = mixer_get_control(mHandle, name, 0);
91 status_t ALSAControl::set(const char *name, const char *value) argument
95 ALOGD("set:: name %s value %s", name, value);
102 ctl = mixer_get_control(mHandle, name,
111 setext(const char *name, int count, char **setValues) argument
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dminiopt.h36 const char* name; /* name for prompt in error strings */ member in struct:miniopt
60 void miniopt_init(miniopt_t *t, const char* name, const char* flags, bool longflags);
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
H A DOMX_ComponentRegistry.h13 OMX_STRING name; member in struct:_ComponentTable
/hardware/qcom/audio/legacy/libalsa-intf/
H A Damix.c34 struct mixer_ctl *get_ctl(struct mixer *mixer, char *name) argument
39 if (isdigit(name[0]))
40 return mixer_get_nth_control(mixer, atoi(name) - 1);
42 p = strrchr(name, '#');
48 return mixer_get_control(mixer, name, idx);
/hardware/libhardware/modules/nfc/
H A Dnfc_pn544_example.c31 static int nfc_open(const hw_module_t* module, const char* name, argument
33 if (strcmp(name, NFC_PN544_CONTROLLER) == 0) {
67 .name = "Default NFC HW HAL",
/hardware/invensense/libsensors_iio/
H A DSensorBase.cpp112 char name[80]; local
113 if (ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
114 name[0] = '\0';
116 LOGV_IF(EXTRA_VERBOSE, "name read %s", name);
117 if (!strcmp(name, inputName)) {
/hardware/libhardware/include/hardware/
H A Dqemud.h64 qemud_channel_open(const char* name) argument
67 int namelen = strlen(name);
72 snprintf(pipe_name, sizeof(pipe_name), "qemud:%s", name);
75 D("QEMUD pipe is not available for %s: %s", name, strerror(errno));
85 /* send service name to connect */
86 if (qemud_fd_write(fd, name, namelen) != namelen) {
87 D("can't send service name to qemud: %s",
96 D("cant' connect to %s service through qemud", name);
/hardware/qcom/bt/libbt-vendor/src/
H A Duserial_vendor.c50 bt_hci_transport_device.name = APPS_RIVA_BT_CMD_CH;
55 bt_hci_transport_device.name = BT_HS_UART_DEVICE;
95 bt_hci_transport_device.name, strerror(errno));
97 fd = open(bt_hci_transport_device.name, (O_RDWR | O_NOCTTY));
104 bt_hci_transport_device.name, strerror(errno));
118 ALOGE("init_uart: Cannot flush %s\n", bt_hci_transport_device.name);
/hardware/qcom/display/libgralloc/
H A Dgralloc.cpp36 int fb_device_open(const hw_module_t* module, const char* name,
39 static int gralloc_device_open(const hw_module_t* module, const char* name,
77 name: "Graphics Memory Allocator Module",
99 int gralloc_device_open(const hw_module_t* module, const char* name, argument
103 if (!strcmp(name, GRALLOC_HARDWARE_GPU0)) {
112 status = fb_device_open(module, name, device);
/hardware/libhardware_legacy/qemu/
H A Dqemu.c76 const char* name )
81 snprintf(pipe_name, sizeof(pipe_name), "qemud:%s", name);
95 const char* name )
97 int fd, ret, namelen = strlen(name);
108 /* send service name to connect */
109 if (qemu_fd_write(fd, name, namelen) != namelen) {
110 D("can't send service name to qemud: %s",
119 D("cant' connect to %s service through qemud", name);
132 const char* name )
137 "qemud_%s", name);
155 qemu_channel_open_tty( QemuChannel* channel, const char* name, int mode ) argument
184 qemu_channel_open( QemuChannel* channel, const char* name, int mode ) argument
[all...]
/hardware/invensense/mlsdk/platform/linux/kernel/
H A Dslaveirq.h32 struct ext_slave_platform_data *pdata, char *name);
/hardware/qcom/bt/libbt-vendor/include/
H A Duserial_vendor.h53 char *name; member in struct:__anon393
/hardware/ti/omap4xxx/
H A Dmapinfo.h8 char name[]; member in struct:mapinfo
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dminiopt.c41 miniopt_init(miniopt_t *t, const char* name, const char* flags, bool longflags) argument
46 t->name = name;
97 "%s: missing \" = \" in long param \"%s\"\n", t->name, p);
110 t->name, p);
121 t->name, p);
131 "%s: missing value parameter after \"%s\"\n", t->name, p);
/hardware/libhardware/modules/camera/
H A DCameraHAL.cpp89 int CameraHAL::open(const hw_module_t* mod, const char* name, hw_device_t** dev) argument
95 ALOGV("%s: module=%p, name=%s, device=%p", __func__, mod, name, dev);
96 id = strtol(name, &nameEnd, 10);
98 ALOGE("%s: Invalid camera id name %s", __func__, name);
124 static int open_dev(const hw_module_t* mod, const char* name, hw_device_t** dev) argument
126 return gCameraHAL.open(mod, name, dev);
139 name : "Default Camera HAL",
/hardware/msm7k/libstagefrighthw/
H A DQComOMXPlugin.cpp65 const char *name,
75 const_cast<char *>(name),
89 OMX_STRING name,
96 return (*mComponentNameEnum)(name, size, index);
100 const char *name,
110 const_cast<OMX_STRING>(name), &numRoles, NULL);
124 const_cast<OMX_STRING>(name), &numRoles2, array);
64 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
88 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
99 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/hardware/qcom/media/libstagefrighthw/
H A DQComOMXPlugin.cpp65 const char *name,
75 const_cast<char *>(name),
89 OMX_STRING name,
96 return (*mComponentNameEnum)(name, size, index);
100 const char *name,
110 const_cast<OMX_STRING>(name), &numRoles, NULL);
124 const_cast<OMX_STRING>(name), &numRoles2, array);
64 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
88 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
99 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/hardware/samsung_slsi/exynos5/libstagefrighthw/
H A DExynos_OMX_Plugin.cpp67 const char *name,
77 const_cast<char *>(name),
91 OMX_STRING name,
98 return (*mComponentNameEnum)(name, size, index);
102 const char *name,
112 const_cast<OMX_STRING>(name), &numRoles, NULL);
126 const_cast<OMX_STRING>(name), &numRoles2, array);
66 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
90 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
101 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/hardware/ti/omap3/libstagefrighthw/
H A DTIOMXPlugin.cpp65 const char *name,
75 const_cast<char *>(name),
89 OMX_STRING name,
96 return (*mComponentNameEnum)(name, size, index);
100 const char *name,
110 const_cast<OMX_STRING>(name), &numRoles, NULL);
124 const_cast<OMX_STRING>(name), &numRoles2, array);
64 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
88 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
99 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/hardware/ti/omap4xxx/libstagefrighthw/
H A DTIOMXPlugin.cpp73 const char *name,
83 const_cast<char *>(name),
97 OMX_STRING name,
105 return (*mComponentNameEnum)(name, size, index);
109 const char *name,
119 const_cast<OMX_STRING>(name), &numRoles, NULL);
132 const_cast<OMX_STRING>(name), &numRoles, array);
72 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
96 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
108 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/hardware/ti/wlan/mac80211/ti-utils/
H A Dcalibrator.h38 const char *name; member in struct:cmd
63 .name = (_name), \
73 #define COMMAND(section, name, args, cmd, flags, idby, handler, help) \
74 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 0, idby, handler, help)
75 #define HIDDEN(section, name, args, cmd, flags, idby, handler) \
76 __COMMAND(&(__section ## _ ## section), name, #name, args, cmd, flags, 1, idby, handler, NULL)
82 .name = (#_name), \
93 .name
[all...]
/hardware/invensense/libsensors/
H A DSensorBase.cpp112 char name[80]; local
113 if (ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
114 name[0] = '\0';
116 if (!strcmp(name, inputName)) {

Completed in 829 milliseconds

12345678