Searched defs:name (Results 51 - 75 of 248) sorted by relevance

12345678910

/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);
H A Dhardware.h136 const char *name; member in struct:hw_module_t
/hardware/libhardware/modules/consumerir/
H A Dconsumerir.c75 static int consumerir_open(const hw_module_t* module, const char* name, argument
78 if (strcmp(name, CONSUMERIR_TRANSMITTER) != 0) {
112 .name = "Demo IR HAL",
/hardware/libhardware/modules/nfc-nci/
H A Dnfc_nci_example.c77 static int nfc_open(const hw_module_t* module, const char* name, argument
79 if (strcmp(name, NFC_NCI_CONTROLLER) == 0) {
115 .name = "Default NFC NCI HW HAL",
/hardware/libhardware/modules/tv_input/
H A Dtv_input.cpp36 const char* name, struct hw_device_t** device);
48 name: "Sample TV input module",
114 const char* name, struct hw_device_t** device)
117 if (!strcmp(name, TV_INPUT_DEFAULT_DEVICE)) {
113 tv_input_device_open(const struct hw_module_t* module, const char* name, struct hw_device_t** device) argument
/hardware/qcom/gps/core/
H A DLocDualContext.cpp12 * * Neither the name of The Linux Foundation, nor the names of its
60 // the name must be shorter than 15 chars
65 const char* name)
68 mMsgTask = new MsgTask(tCreator, name);
74 const char* name)
77 mMsgTask = new MsgTask(tAssociate, name);
85 const char* name)
88 const MsgTask* msgTask = getMsgTask(tCreator, name);
100 const char* name)
103 const MsgTask* msgTask = getMsgTask(tAssociate, name);
64 getMsgTask(MsgTask::tCreate tCreator, const char* name) argument
73 getMsgTask(MsgTask::tAssociate tAssociate, const char* name) argument
84 getLocFgContext(MsgTask::tCreate tCreator, const char* name) argument
99 getLocFgContext(MsgTask::tAssociate tAssociate, const char* name) argument
116 getLocBgContext(MsgTask::tCreate tCreator, const char* name) argument
132 getLocBgContext(MsgTask::tAssociate tAssociate, const char* name) argument
[all...]
/hardware/samsung_slsi/exynos5/libexynosutils/
H A DExynosMutex.cpp58 bool ExynosMutex::create(int type, char* name) argument
81 m_mutex = new Mutex(androidMutexType, name);
88 strcpy(m_name, name);
186 char *name)
190 if (mutex->create(type, name) == false) {
184 exynos_mutex_create( int type, char *name) argument
/hardware/ti/omap4-aah/camera/inc/OMXCameraAdapter/
H A DOMXSceneModeTables.h46 const char* name; member in struct:Ti::Camera::CameraToSensorModesLUTEntry
/hardware/ti/omap4-aah/kernel-headers-ti/linux/
H A Drpmsg_omx.h5 *** of the same name, to make information necessary for userspace to
46 char name[48]; member in struct:omx_conn_req
/hardware/ti/omap4-aah/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/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/intel/common/libstagefrighthw/
H A DWrsOMXPlugin.cpp119 const char *name,
131 const_cast<char *>(name),
165 OMX_STRING name,
174 if (relativeIndex < mCores[i]->mNumComponents) return ((*(mCores[i]->mComponentNameEnum))(name, size, relativeIndex));
181 const char *name,
191 const_cast<OMX_STRING>(name), &numRoles, NULL);
205 const_cast<OMX_STRING>(name), &numRoles2, array);
118 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
164 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
180 getRolesOfComponent( const char *name, Vector<String8> *roles) argument
/hardware/intel/common/libva/va/x11/
H A Dva_dricommon.h54 unsigned int name; member in struct:dri_buffer::__anon403
/hardware/intel/common/utils/ituxd/jni/
H A DthermalJNI.cpp84 static int lookup(const char *base_path, const char *name) argument
95 // 'name' of the thermal_zone (or a cooling_device) matches
100 if (!strcmp(name, buf)) return count;
109 static int lookup_contains(const char *base_path, const char *name) argument
119 // Check if 'buf' contains 'name'
120 if (strstr(buf, name) != NULL) return count;
277 /* name, signature, funcPtr */
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/
H A DThermalUtils.java42 private native static int native_getThermalZoneIndex(String name); argument
43 private native static int native_getThermalZoneIndexContains(String name); argument
44 private native static int native_getCoolingDeviceIndex(String name); argument
45 private native static int native_getCoolingDeviceIndexContains(String name); argument
46 private native static boolean native_isFileExists(String name); argument
76 public static int getThermalZoneIndex(String name) { argument
78 return native_getThermalZoneIndex(name);
85 public static int getThermalZoneIndexContains(String name) { argument
87 return native_getThermalZoneIndexContains(name);
94 public static int getCoolingDeviceIndex(String name) { argument
103 getCoolingDeviceIndexContains(String name) argument
[all...]
/hardware/intel/common/wrs_omxil_core/base/src/
H A Dcmodule.cpp45 // strncpy(this->name, name, OMX_MAX_STRINGNAME_SIZE);
94 LOGE("module %s will be overwrite",module->name);
213 const char *name; local
261 name = wrs_omxil_cmodule->name;
262 name_len = strlen(name);
266 strncpy(&cname[0], name, copy_name_len);
/hardware/intel/img/libdrm/tests/modeprint/
H A Dmodeprint.c69 printf("Mode: %s\n", mode->name);
84 printf("Mode: \"%s\" %ix%i %.0f\n", mode->name,
92 const unsigned char *name = NULL; local
95 printf("Property: %s\n", props->name);
123 if (!strncmp(props->name, "DPMS", 4))
127 printf("\t\t%lld = %s\n", props->enums[j].value, props->enums[j].name);
129 name = props->enums[j].name;
132 if (props->count_enums && name) {
133 printf("\tcon_value : %s\n", name);
[all...]
/hardware/intel/img/psb_video/src/
H A Dtng_enc_trace.h46 char *name; member in struct:RegisterInfomation
/hardware/invensense/6515/libsensors_iio/
H A DSensorBase.cpp174 char name[80]; local
175 if (ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
176 name[0] = '\0';
178 LOGV_IF(EXTRA_VERBOSE, "name read %s", name);
179 if (!strcmp(name, inputName)) {
/hardware/invensense/65xx/libsensors_iio/
H A DSensorBase.cpp169 char name[80]; local
170 if (ioctl(fd, EVIOCGNAME(sizeof(name) - 1), &name) < 1) {
171 name[0] = '\0';
173 LOGV_IF(EXTRA_VERBOSE, "name read %s", name);
174 if (!strcmp(name, inputName)) {
/hardware/libhardware/modules/camera/
H A DCameraHAL.cpp89 int CameraHAL::open(const hw_module_t* mod, const char* name, hw_device_t** dev) argument
94 ALOGV("%s: module=%p, name=%s, device=%p", __func__, mod, name, dev);
95 if (*name == '\0') {
96 ALOGE("%s: Invalid camera id name is NULL", __func__);
99 id = strtol(name, &nameEnd, 10);
101 ALOGE("%s: Invalid camera id name %s", __func__, name);
162 static int open_dev(const hw_module_t* mod, const char* name, hw_device_t** dev) argument
164 return gCameraHAL.open(mod, name, de
[all...]
H A DVendorTags.cpp37 const char* name; member in struct:default_camera_hal::__anon1327::Entry
42 const char* name; member in struct:default_camera_hal::__anon1327::Section
166 return section->name;
176 return entry->name;
/hardware/libhardware/modules/gralloc/
H A Dgralloc.cpp52 int fb_device_open(const hw_module_t* module, const char* name,
55 static int gralloc_device_open(const hw_module_t* module, const char* name,
85 .name = "Graphics Memory Allocator Module",
284 int gralloc_device_open(const hw_module_t* module, const char* name, argument
288 if (!strcmp(name, GRALLOC_HARDWARE_GPU0)) {
307 status = fb_device_open(module, name, device);
/hardware/libhardware/modules/soundtrigger/
H A Dsound_trigger_hw.c251 static int stdev_open(const hw_module_t* module, const char* name, argument
257 if (strcmp(name, SOUND_TRIGGER_HARDWARE_INTERFACE) != 0)
292 .name = "Default sound trigger HAL",
/hardware/qcom/display/msm8084/libhwcomposer/
H A Dhwc_vsync.cpp90 const char* name; member in struct:qhwc::event
137 event_list[ev].name);

Completed in 648 milliseconds

12345678910