Searched defs:list (Results 1 - 20 of 20) sorted by relevance

/development/ndk/platforms/android-3/include/linux/mtd/
H A Dpartitions.h31 struct list_head list; member in struct:mtd_part_parser
H A Dblktrans.h25 struct list_head list; member in struct:mtd_blktrans_dev
57 struct list_head list; member in struct:mtd_blktrans_ops
H A Dmap.h16 #include <linux/list.h>
71 struct list_head list; member in struct:mtd_chip_driver
H A Dmtd.h145 struct list_head list; member in struct:mtd_notifier
/development/ndk/platforms/android-3/include/linux/
H A Dmutex.h15 #include <linux/list.h>
30 struct list_head list; member in struct:mutex_waiter
H A Dxattr.h35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
H A Dfutex.h33 struct robust_list list; member in struct:robust_list_head
H A Dmiscdevice.h51 struct list_head list; member in struct:miscdevice
H A Delevator.h75 struct list_head list; member in struct:elevator_type
H A Dproc_fs.h63 struct list_head list; member in struct:vmcore
/development/tools/mkstubs/tests/data/
H A DTestTemplateClass.java50 public static <T extends Comparable<? super T>> void sort(List<T> list) { argument
53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) { argument
/development/apps/Development/src/com/android/development/
H A DArrayAdapter.java36 public void setSource(List<E> list) { argument
37 mList = list;
H A DPermissionDetails.java55 * the list of apps using a permission.
95 AppListAdapter(List<PackageInfo> list) { argument
96 mList = list;
143 private void createAppList(List<PackageInfo> list) { argument
144 Log.i(TAG, "list.size=" + list.size());
145 for (PackageInfo pkg : list) {
148 ListView listView = (ListView)findViewById(android.R.id.list);
149 mAdapter = new AppListAdapter(list);
150 ListView lv= (ListView) findViewById(android.R.id.list);
[all...]
/development/tools/emulator/opengl/
H A Dcommon.mk26 # Internal list of all declared modules (used for sanity checking)
86 # This is the list of recognized export types we support for now.
126 # $1: list of modules to import
164 _emugl-dump-list = \
175 $(call _emugl-dump-list,$(_emugl.$(_emugl_MODULE).export.$(_type)))\
177 $(call _emugl-dump-list,$(LOCAL_$(_type)))\
/development/tools/emulator/opengl/system/egl/
H A DeglDisplay.cpp24 // list of extensions supported by this EGL implementation
30 // list of extensions supported by this EGL implementation only if supported
261 // needed later when filtering the extension list.
274 static bool findExtInList(const char* token, int tokenlen, const char* list) argument
276 const char* p = list;
280 /* should not happen, list must be space-terminated */
296 // no extensions on host - only static extension list supported
301 // Filter host extension list to include only extensions
302 // we can support (in the systemDynamicEGLExtensions list)
/development/tools/emulator/system/camera/
H A DQemuClient.cpp375 /* Queries list of cameras connected to the host. */
376 const char FactoryQemuClient::mQueryList[] = "list";
387 status_t FactoryQemuClient::listCameras(char** list) argument
398 /* Make sure there is a list returned. */
400 ALOGE("%s: No camera list is returned.", __FUNCTION__);
404 /* Copy the list over. */
405 *list = (char*)malloc(query.mReplyDataSize);
406 if (*list != NULL) {
407 memcpy(*list, query.mReplyData, query.mReplyDataSize);
408 ALOGD("Emulated camera list
[all...]
/development/tools/emulator/system/sensors/
H A Dsensors_qemu.c480 * the following is the list of all supported sensors.
548 struct sensor_t const** list)
559 ret = qemud_channel_send(fd, "list-sensors", -1);
561 E("%s: could not query sensor list: %s", __FUNCTION__,
568 E("%s: could not receive sensor list: %s", __FUNCTION__,
586 *list = sSensorList;
547 sensors__get_sensors_list(struct sensors_module_t* module, struct sensor_t const** list) argument
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkey.java840 * Load a list of package names from a file.
843 * @param list The destination list.
846 private static boolean loadPackageListFromFile(String fileName, HashSet<String> list) { argument
854 list.add(s);
943 * Using the restrictions provided (categories & packages), generate a list
946 * @return Returns true if it could successfully build a list of target
1165 * @return Returns true if new files have appeared in the list
1168 String[] tombstones = TOMBSTONES_PATH.list();
1185 // keep the new list fo
[all...]
/development/ndk/platforms/android-3/include/linux/sunrpc/
H A Dsched.h33 struct list_head list; member in struct:rpc_wait
83 #define task_for_each(task, pos, head) list_for_each(pos, head) if ((task=list_entry(pos, struct rpc_task, u.tk_wait.list)),1)
85 #define task_for_first(task, head) if (!list_empty(head) && ((task=list_entry((head)->next, struct rpc_task, u.tk_wait.list)),1))
/development/tools/emulator/system/qemud/
H A Dqemud.c635 ** corresponding file descriptor. We use linked list of Packet
651 * operations so use a single linked list of free packets
750 FDHandlerList* list; member in struct:FDHandler
768 /* list of active FDHandler objects */
771 /* list of closing FDHandler objects.
780 /* remove a FDHandler from its current list */
789 /* add a FDHandler to a given list */
791 fdhandler_prepend( FDHandler* f, FDHandler** list )
793 f->next = list[0];
794 f->pref = list;
802 fdhandler_list_init( FDHandlerList* list, Looper* looper ) argument
951 fdhandler_new( int fd, FDHandlerList* list, Receiver* receiver ) argument
1010 fdhandler_new_accept( int fd, FDHandlerList* list, Receiver* receiver ) argument
1183 serial_init( Serial* s, int fd, FDHandlerList* list, Receiver* receiver ) argument
[all...]

Completed in 658 milliseconds