HomeSort by relevance Sort by last modified time
    Searched defs:list (Results 226 - 250 of 4851) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libusb/libusb/
hotplug.h 65 /** List this callback is registered in (ctx->hotplug_cbs) */
66 struct list_head list; member in struct:libusb_hotplug_callback
78 /** List this message is contained in (ctx->hotplug_msgs) */
79 struct list_head list; member in struct:libusb_hotplug_message
  /external/ltp/testcases/kernel/syscalls/get_robust_list/
get_robust_list01.c 65 struct robust_list list; member in struct:robust_list_head
92 * specified by len_ptr argument, or the head of the robust list can't
  /external/ltp/testcases/kernel/syscalls/set_robust_list/
set_robust_list01.c 62 struct robust_list list; member in struct:robust_list_head
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/aio_suspend/
3-1.c 12 * The list array may contain NULL pointers which are ignored.
17 * - prepare suspend list with NULL pointers
18 * - call aio_suspend with this list
47 const struct aiocb *list[NENT]; local
79 memset(&list, 0, sizeof(list));
80 list[2] = &aiocb[0];
81 list[5] = &aiocb[1];
82 list[6] = &aiocb[2];
84 if (aio_suspend(list, NENT, NULL) != 0)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/lio_listio/
8-1.c 46 struct aiocb *list[1]; local
80 list[0] = &aiocb;
82 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1) {
9-1.c 46 struct aiocb *list[1]; local
74 list[0] = &aiocb;
76 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1) {
  /external/ltp/tools/pounder21/src/time_tests/
inconsistency-check.c 46 struct timespec list[CALLS_PER_LOOP]; local
56 if (clock_gettime(clock_type, &list[0])) {
61 clock_gettime(clock_type, &list[0]);
62 now = then = list[0].tv_sec;
69 /* Fill list */
71 clock_gettime(clock_type, &list[i]);
75 if (!in_order(list[i], list[i + 1]))
84 printf("%lu:%lu\n", list[i].tv_sec,
85 list[i].tv_nsec)
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_control_flow.h 67 /** puts a control flow node at the beginning of a list from an if, loop, or function */
69 nir_cf_node_insert_begin(struct exec_list *list, nir_cf_node *node)
71 nir_cf_node_insert(nir_before_cf_list(list), node);
74 /** puts a control flow node at the end of a list from an if, loop, or function */
76 nir_cf_node_insert_end(struct exec_list *list, nir_cf_node *node)
78 nir_cf_node_insert(nir_after_cf_list(list), node);
84 * These functions let you take a part of a control flow list (basically
125 * 5. Extracting a control flow list will leave lots of dangling references to
134 struct exec_list list; member in struct:__anon29314
135 nir_function_impl *impl; /* for cleaning up if the list is deleted *
158 nir_cf_list list; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_caps.c 34 * Iterates over a list of caps checks as defined in u_caps.h. Should
36 * the list (TERMINATE). Should any check fail returns FALSE and set
40 util_check_caps_out(struct pipe_screen *screen, const unsigned *list, int *out)
45 for (i = 0; list[i];) {
46 switch(list[i++]) {
48 if (!screen->get_param(screen, list[i++])) {
54 tmpi = screen->get_param(screen, list[i++]);
55 if (tmpi < (int)list[i++]) {
61 tmpf = screen->get_paramf(screen, list[i++]);
62 if (tmpf < (float)list[i++])
217 unsigned *list; member in struct:__anon29445
218 } list[] = { local
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_query.c 84 struct pipe_driver_query_info list[] = { local
90 return ARRAY_SIZE(list);
92 if (index >= ARRAY_SIZE(list))
95 *info = list[index];
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_query.c 99 struct pipe_driver_query_info list[] = { local
109 return ARRAY_SIZE(list);
111 if (index >= ARRAY_SIZE(list))
114 *info = list[index];
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_query.h 44 struct list_head list; member in struct:ilo_query
  /external/mesa3d/src/gallium/drivers/trace/
tr_texture.h 53 struct tr_list list; member in struct:trace_resource
63 struct tr_list list; member in struct:trace_surface
82 struct tr_list list; member in struct:trace_transfer
  /external/minijail/examples/
drop_privs.cpp 44 gid_t *list = (gid_t*)calloc((size_t)nsupp_groups, sizeof(gid_t)); local
45 nsupp_groups = getgroups(nsupp_groups, list);
50 LOG(INFO) << "supp gid " << i + 1 << " " << list[i]; local
52 free(list);
  /external/mockito/src/test/java/org/mockito/internal/util/collections/
ListUtilTest.java 14 import java.util.List;
23 List<String> list = asList("one", "x", "two", "x", "three"); local
24 List<String> filtered = ListUtil.filter(list, new Filter<String>() {
35 List<Object> list = new LinkedList<Object>(); local
36 List<Object> filtered = ListUtil.filter(list, null);
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
JUnit45RunnerTest.java 13 import java.util.List;
23 @Mock private List<String> list; field in class:JUnit45RunnerTest
27 list.add("test");
28 verify(list).add("test");
33 assertNotNull(list);
34 assertSame(list, listDependent.getList());
47 private List<?> list; field in class:JUnit45RunnerTest.ListDependent
49 public List<?> getList()
    [all...]
  /external/mockito/src/test/java/org/mockitousage/stubbing/
ReturningDefaultValuesTest.java 16 import java.util.List;
56 assertTrue(mock.list().isEmpty());
66 List list = mock.list(); local
67 list.add("test");
69 assertTrue(mock.list().isEmpty());
73 List<?> list() { method in class:ReturningDefaultValuesTest.CollectionsServer
StubbingWithExtraAnswersTest.java 15 import java.util.List;
29 List<Integer> list = asList(1, 2, 3); local
30 when(mock.objectReturningMethodNoArgs()).thenAnswer(AdditionalAnswers.returnsElementsOf(list));
44 List<Integer> list = asList(1, null); local
45 when(mock.objectReturningMethodNoArgs()).thenAnswer(AdditionalAnswers.returnsElementsOf(list));
  /external/mockito/src/test/java/org/mockitousage/verification/
VerificationOnMultipleMocksUsingMatchersTest.java 13 import java.util.List;
24 List<Object> list = Mockito.mock(List.class); local
27 list.add("test");
28 list.add(1, "test two");
33 verify(list).add(anyObject());
34 verify(list).add(anyInt(), eq("test two"));
39 verifyNoMoreInteractions(list, map);
44 List<String> list = mock(List.class) local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.java 69 AcceptList list = new AcceptList(); local
88 list.add(accept);
105 list.add(accept);
108 return list;
AlertInfoParser.java 72 AlertInfoList list = new AlertInfoList(); local
102 list.add(alertInfo);
109 return list;
AllowEventsParser.java 69 AllowEventsList list = new AllowEventsList(); local
82 list.add(allowEvents);
93 list.add(allowEvents);
99 return list;
AllowParser.java 68 AllowList list = new AllowList(); local
81 list.add(allow);
92 list.add(allow);
98 return list;
CallInfoParser.java 67 CallInfoList list=new CallInfoList(); local
85 list.add(callInfo);
102 list.add(callInfo);
106 return list;
ContentLanguageParser.java 69 ContentLanguageList list = new ContentLanguageList(); local
81 list.add(cl);
91 list.add(cl);
95 return list;

Completed in 1080 milliseconds

1 2 3 4 5 6 7 8 91011>>