Searched refs:list (Results 1 - 25 of 68) sorted by relevance

123

/hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
H A DOMX_TI_Debug.h285 * format, list - debug message
290 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
294 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
297 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
302 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
306 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
312 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
317 format OMX_DBG_FN OMX_DBG_LINE, ##list); \
324 #define OMX_DBG_PRINT(file, domain, level, mask, format, list...) \
329 format, OMX_DBG_FN OMX_DBG_LINE ##list); \
[all...]
/hardware/invensense/libsensors/
H A DMPLSensor.cpp72 /* Base values for the sensor list, these need to be in the order defined in MPLSensor.h */
167 /* sensor list will be changed based on this variable */
484 /* this variable is used for coming up with sensor list */
1125 /** fill in the sensor list based on which sensors are configured.
1127 * parameter list must point to a memory region of at least 7*sizeof(sensor_t)
1128 * parameter len gives the length of the buffer pointed to by list
1131 int MPLSensor::populateSensorList(struct sensor_t *list, int len) argument
1136 ALOGE("sensor list too small, not populating.");
1141 memcpy(list, sSensorList, sizeof (struct sensor_t) * 7);
1143 /* first add gyro, accel and compass to the list */
1188 fillAccel(unsigned char accel, struct sensor_t *list) argument
1262 fillCompass(unsigned char compass, struct sensor_t *list) argument
1315 fillGyro(const char* gyro, struct sensor_t *list) argument
1331 fillRV(struct sensor_t *list) argument
1341 fillOrientation(struct sensor_t *list) argument
1350 fillGravity( struct sensor_t *list) argument
1359 fillLinearAccel(struct sensor_t *list) argument
[all...]
H A DMPLSensor.h69 int populateSensorList(struct sensor_t *list, int len);
128 /* added for dynamic get sensor list */
130 void fillAccel(unsigned char accel, struct sensor_t *list);
131 void fillCompass(unsigned char compass, struct sensor_t *list);
132 void fillGyro(const char* gyro, struct sensor_t *list);
133 void fillRV(struct sensor_t *list);
134 void fillOrientation(struct sensor_t *list);
135 void fillGravity(struct sensor_t *list);
136 void fillLinearAccel(struct sensor_t *list);
/hardware/libhardware/tests/nusensors/
H A Dnusensors.cpp78 struct sensor_t const* list; local
79 int count = module->get_sensors_list(module, &list);
90 list[i].name,
91 list[i].vendor,
92 list[i].version,
93 list[i].handle,
94 list[i].type,
95 list[i].maxRange,
96 list[i].resolution,
97 list[
[all...]
/hardware/qcom/audio/libalsa-intf/
H A Dalsa_ucm.h108 /* add new verbs to end of list */
127 /* add new devices to end of list */
154 /* add new modifiers to end of list */
181 * \brief Free a string list
182 * \param list The string list to free
186 int snd_use_case_free_list(const char *list[], int items);
189 * \brief Obtain a list of entries
190 * \param uc_mgr Use case manager (may be NULL - card list)
191 * \param identifier (may be NULL - card list)
356 snd_use_case_card_list(const char **list[]) argument
367 snd_use_case_verb_list(snd_use_case_mgr_t *uc_mgr, const char **list[]) argument
[all...]
H A Dalsa_ucm.c8 * notice, this list of conditions and the following disclaimer.
10 * copyright notice, this list of conditions and the following
84 * Free a list
85 * list - list to free
89 int snd_use_case_free_list(const char *list[], int items) argument
91 /* list points to UCM internal static tables,
93 * just set the list to NULL and return */
94 list = NULL;
99 * Obtain a list o
105 snd_use_case_get_list(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char **list[]) argument
2452 card_mctrl_t *list; local
2874 card_mctrl_t *list; local
3102 print_list(card_mctrl_t *list, int verb_index, int count) argument
3134 card_mctrl_t *list; local
3218 card_mctrl_t *list; local
3484 mixer_control_t *list; local
3583 free_list(card_mctrl_t *list, int verb_index, int count) argument
[all...]
/hardware/qcom/display/libhwcomposer/
H A Dhwc_mdpcomp.h157 static bool configure(hwc_context_t *ctx, hwc_display_contents_1_t* list);
160 static int draw(hwc_context_t *ctx, hwc_display_contents_1_t *list);
172 static void setMDPCompLayerFlags(hwc_display_contents_1_t* list);
174 hwc_display_contents_1_t* list);
183 static bool is_doable(hwc_context_t *ctx, hwc_display_contents_1_t* list);
185 static bool setup(hwc_context_t* ctx, hwc_display_contents_1_t* list);
190 /* iterates through layer list to choose candidate to use overlay */
191 static int mark_layers(hwc_context_t *ctx, hwc_display_contents_1_t* list,
194 static bool parse_and_allocate(hwc_context_t* ctx, hwc_display_contents_1_t* list,
202 hwc_display_contents_1_t* list,
[all...]
H A Dhwc.cpp89 hwc_display_contents_1_t *list) {
92 if (LIKELY(list && list->numHwLayers > 1) &&
95 uint32_t last = list->numHwLayers - 1;
96 hwc_layer_1_t *fbLayer = &list->hwLayers[last];
98 setListStats(ctx, list, HWC_DISPLAY_PRIMARY);
99 if(VideoOverlay::prepare(ctx, list, HWC_DISPLAY_PRIMARY)) {
101 } else if(MDPComp::configure(ctx, list)) {
112 hwc_display_contents_1_t *list) {
115 if (LIKELY(list
88 hwc_prepare_primary(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
111 hwc_prepare_external(hwc_composer_device_1 *dev, hwc_display_contents_1_t *list) argument
150 hwc_display_contents_1_t *list = displays[i]; local
256 hwc_set_primary(hwc_context_t *ctx, hwc_display_contents_1_t* list) argument
286 hwc_set_external(hwc_context_t *ctx, hwc_display_contents_1_t* list) argument
334 hwc_display_contents_1_t* list = displays[i]; local
[all...]
H A Dhwc_utils.cpp115 const hwc_display_contents_1_t *list, int dpy) {
117 ctx->listStats[dpy].numAppLayers = list->numHwLayers - 1;
118 ctx->listStats[dpy].fbLayerIndex = list->numHwLayers - 1;
123 for (size_t i = 0; i < list->numHwLayers; i++) {
125 (private_handle_t *)list->hwLayers[i].handle;
127 if(list->hwLayers[i].compositionType == HWC_FRAMEBUFFER_TARGET) {
130 } else if (isSkipLayer(&list->hwLayers[i])) {
207 int hwc_sync(hwc_context_t *ctx, hwc_display_contents_1_t* list, int dpy) { argument
219 for(uint32_t i = 0; i < list->numHwLayers; i++) {
220 if((list
114 setListStats(hwc_context_t *ctx, const hwc_display_contents_1_t *list, int dpy) argument
[all...]
H A Dhwc_copybit.h42 static bool prepare(hwc_context_t *ctx, hwc_display_contents_1_t *list);
44 static bool draw(hwc_context_t *ctx, hwc_display_contents_1_t *list, EGLDisplay dpy,
56 hwc_display_contents_1_t *list);
58 const hwc_display_contents_1_t *list);
81 static unsigned int getRGBRenderingArea (const hwc_display_contents_1_t *list);
H A Dhwc_extonly.h31 static bool prepare(hwc_context_t *ctx, hwc_display_contents_1_t *list);
33 static bool draw(hwc_context_t *ctx, hwc_display_contents_1_t *list);
H A Dhwc_video.h29 static bool prepare(hwc_context_t *ctx, hwc_display_contents_1_t *list,
32 static bool draw(hwc_context_t *ctx, hwc_display_contents_1_t *list,
H A Dhwc_copybit.cpp116 bool CopyBit::canUseCopybitForRGB(hwc_context_t *ctx, hwc_display_contents_1_t *list) { argument
141 unsigned int renderArea = getRGBRenderingArea(list);
157 unsigned int CopyBit::getRGBRenderingArea(const hwc_display_contents_1_t *list) { argument
161 for (unsigned int i=0; i<list->numHwLayers; i++) {
162 private_handle_t *hnd = (private_handle_t *)list->hwLayers[i].handle;
165 getLayerResolution(&list->hwLayers[i], w, h);
173 bool CopyBit::prepare(hwc_context_t *ctx, hwc_display_contents_1_t *list) { argument
185 bool useCopybitForRGB = canUseCopybitForRGB(ctx, list);
187 if(!(validateParams(ctx, list))) {
192 for (int i=list
212 draw(hwc_context_t *ctx, hwc_display_contents_1_t *list, EGLDisplay dpy, EGLSurface sur) argument
471 validateParams(hwc_context_t *ctx, const hwc_display_contents_1_t *list) argument
[all...]
/hardware/qcom/camera/QCamera/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_queue.c8 notice, this list of conditions and the following disclaimer.
10 copyright notice, this list of conditions and the following
37 cam_list_init(&queue->head.list);
55 cam_list_add_tail_node(&node->list, &queue->head.list);
71 head = &queue->head.list;
74 node = member_of(pos, mm_jpeg_q_node_t, list);
75 cam_list_del_node(&node->list);
115 head = &queue->head.list;
119 node = member_of(pos, mm_jpeg_q_node_t, list);
[all...]
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
H A DCWsm.h13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
37 #include <list>
63 typedef std::list<CWsm_ptr> wsmList_t;
H A DConnection.h13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
36 #include <list>
120 typedef std::list<Connection *> connectionList_t;
/hardware/invensense/libsensors_iio/
H A DCompassSensor.IIO.9150.cpp290 void CompassSensor::fillList(struct sensor_t *list)
298 list->maxRange = COMPASS_MPU9150_RANGE;
301 // list->resolution = COMPASS_MPU9150_RESOLUTION;
302 list->resolution = COMPASS_AKM8963_RESOLUTION;
303 list->power = COMPASS_MPU9150_POWER;
304 list->minDelay = COMPASS_MPU9150_MINDELAY;
309 list->maxRange = COMPASS_AKM8975_RANGE;
310 list->resolution = COMPASS_AKM8975_RESOLUTION;
311 list->power = COMPASS_AKM8975_POWER;
312 list
[all...]
H A DMPLSensor.cpp150 // following extended initializer list would only be available with -std=c++11 or -std=gnu+11
2550 /** fill in the sensor list based on which sensors are configured.
2552 * parameter list must point to a memory region of at least 7*sizeof(sensor_t)
2553 * parameter len gives the length of the buffer pointed to by list
2555 int MPLSensor::populateSensorList(struct sensor_t *list, int len)
2562 LOGE("HAL:sensor list too small, not populating.");
2567 memcpy(list, sSensorList, sizeof (struct sensor_t) * (sizeof(sSensorList) / sizeof(sensor_t)));
2569 /* first add gyro, accel and compass to the list */
2575 fillGyro(chip_ID, list);
2576 fillAccel(chip_ID, list);
[all...]
/hardware/qcom/camera/QCamera/stack/mm-camera-interface/src/
H A Dmm_camera_data.c8 notice, this list of conditions and the following disclaimer.
10 copyright notice, this list of conditions and the following
52 cam_list_init(&queue->head.list);
70 cam_list_add_tail_node(&node->list, &queue->head.list);
86 head = &queue->head.list;
89 node = member_of(pos, mm_camera_q_node_t, list);
90 cam_list_del_node(&node->list);
118 head = &queue->head.list;
122 node = member_of(pos, mm_camera_q_node_t, list);
[all...]
/hardware/ril/libril/
H A Dril_event.cpp108 static void init_list(struct ril_event * list) argument
110 memset(list, 0, sizeof(struct ril_event));
111 list->next = list;
112 list->prev = list;
113 list->fd = -1;
116 static void addToList(struct ril_event * ev, struct ril_event * list) argument
118 ev->next = list;
119 ev->prev = list
292 struct ril_event * list; local
[all...]
/hardware/ril/mock-ril/src/cpp/
H A Dworker.h21 #include <list>
120 std::list<struct Record *> q_; // list of records to be processed
121 std::list<struct Record *> free_list_; // list of records that have been released
123 // list of records that are delayed
/hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
H A DSession.h10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
34 #include <list>
67 typedef std::list<BulkBufferDescriptor *> bulkBufferDescrList_t;
172 typedef std::list<Session *> sessionList_t;
/hardware/libhardware_legacy/uevent/
H A Duevent.c36 LIST_ENTRY(uevent_handler) list;
89 LIST_FOREACH(h, &uevent_handler_list, list)
114 LIST_INSERT_HEAD(&uevent_handler_list, h, list);
126 LIST_FOREACH(h, &uevent_handler_list, list) {
128 LIST_REMOVE(h, list);
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
H A DTrustletSession.h11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
69 typedef std::list<TrustletSession *> trustletSessionList_t;
/hardware/libhardware/include/hardware/
H A Dhwcomposer_v0.h152 * list's geometry has changed, that is, when more than just the buffer's
156 * a NULL list parameter or a numHwLayers of zero indicates that the
163 int (*prepare)(struct hwc_composer_device *dev, hwc_layer_list_t* list);
167 * functionality, except it also commits the work list atomically with
170 * The list parameter is guaranteed to be the same as the one returned
176 * of the work list, without artifacts during the transition from the
188 * a NULL list parameter or a numHwLayers of zero indicates that the
192 * dpy, sur, and list are set to NULL to indicate that the screen is
198 * pixels behind all the layers in the list.
210 hwc_layer_list_t* list);
[all...]

Completed in 738 milliseconds

123