Home
last modified time | relevance | path

Searched refs:keys (Results 1 – 24 of 24) sorted by relevance

/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old_db/
A Dtd_ta_tsd_iter.c27 struct pthread_key_struct *keys; in td_ta_tsd_iter() local
38 keys = (struct pthread_key_struct *) alloca (sizeof (keys[0]) in td_ta_tsd_iter()
42 if (ps_pdread (ta->ph, ta->keys, keys, in td_ta_tsd_iter()
43 sizeof (keys[0]) * pthread_keys_max) != PS_OK) in td_ta_tsd_iter()
48 if (keys[cnt].in_use in td_ta_tsd_iter()
50 && callback (cnt, keys[cnt].destr, cbdata_p) != 0) in td_ta_tsd_iter()
A Dtd_thr_tsd.c27 struct pthread_key_struct *keys = th->th_ta_p->keys; in td_thr_tsd() local
52 if (ps_pdread (th->th_ta_p->ph, &keys[tk], &key, in td_thr_tsd()
A Dthread_dbP.h54 struct pthread_key_struct *keys; member
A Dtd_ta_new.c97 (*ta)->keys = (struct pthread_key_struct *) addr; in td_ta_new()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads_db/
A Dtd_ta_tsd_iter.c28 struct pthread_key_struct *keys; in td_ta_tsd_iter() local
39 keys = (struct pthread_key_struct *) alloca (sizeof (keys[0]) in td_ta_tsd_iter()
43 if (ps_pdread (ta->ph, ta->keys, keys, in td_ta_tsd_iter()
44 sizeof (keys[0]) * pthread_keys_max) != PS_OK) in td_ta_tsd_iter()
49 if (keys[cnt].in_use in td_ta_tsd_iter()
51 && callback (cnt, keys[cnt].destr, cbdata_p) != 0) in td_ta_tsd_iter()
A Dtd_thr_tsd.c28 struct pthread_key_struct *keys = th->th_ta_p->keys; in td_thr_tsd() local
53 if (ps_pdread (th->th_ta_p->ph, &keys[tk], &key, in td_thr_tsd()
A Dthread_dbP.h54 struct pthread_key_struct *keys; member
A Dtd_ta_new.c97 (*ta)->keys = (struct pthread_key_struct *) addr; in td_ta_new()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/
A Dtst-key1.c35 pthread_key_t *keys = alloca (max * sizeof (pthread_key_t)); in do_test() local
39 if (pthread_key_create (&keys[i], NULL) != 0) in do_test()
48 if (pthread_setspecific (keys[i], (const void *) (i + 100l)) != 0) in do_test()
57 if (pthread_getspecific (keys[i]) != (void *) (i + 100l)) in do_test()
63 if (pthread_key_delete (keys[i]) != 0) in do_test()
71 if (pthread_key_create (&keys[0], NULL) != 0) in do_test()
77 if (pthread_key_delete (keys[0]) != 0) in do_test()
A Dtst-key4.c31 static pthread_key_t *keys; variable
39 if (pthread_setspecific (keys[i], (void *) (long int) (i + 1)) != 0) in tf1()
54 if (pthread_getspecific (keys[i]) != NULL) in tf2()
67 keys = alloca (max * sizeof (pthread_key_t)); in do_test()
71 if (pthread_key_create (&keys[i], NULL) != 0) in do_test()
A Dtst-key2.c67 pthread_key_t keys[N]; in do_test() local
71 if (pthread_key_create (&keys[i], fcts[i]) != 0) in do_test()
78 if (pthread_create (&th, NULL, tf, &keys[1]) != 0) in do_test()
103 if (pthread_key_delete (keys[i]) != 0) in do_test()
A Dtst-tsd6.c9 static pthread_key_t keys[NKEYS]; variable
19 void *p = pthread_getspecific (keys[i]); in tf()
20 pthread_setspecific (keys[i], (void *) 7); in tf()
39 if (pthread_key_create (&keys[i], NULL) != 0) in do_test()
A Dtst-key3.c77 pthread_key_t keys[N]; in do_test() local
81 if (pthread_key_create (&keys[i], fcts[i]) != 0) in do_test()
94 if (pthread_create (&th, NULL, tf, &keys[1]) != 0) in do_test()
138 if (pthread_key_delete (keys[i]) != 0) in do_test()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl_db/
A Dtd_ta_tsd_iter.c29 void *keys; in td_ta_tsd_iter() local
51 keys = __alloca (keys_nb); in td_ta_tsd_iter()
55 if (ps_pdread (ta->ph, addr, keys, keys_nb) != PS_OK) in td_ta_tsd_iter()
62 err = DB_GET_FIELD_LOCAL (seq, ta, keys, pthread_key_struct, seq, 0); in td_ta_tsd_iter()
67 err = DB_GET_FIELD_LOCAL (destr, ta, keys, pthread_key_struct, in td_ta_tsd_iter()
76 keys += keys_elemsize; in td_ta_tsd_iter()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/unistd/
A Dgetsubopt-susv3.c11 int getsubopt(char **opt, char *const *keys, char **val) in getsubopt() argument
21 for (i=0; keys[i]; i++) { in getsubopt()
22 size_t l = strlen(keys[i]); in getsubopt()
23 if (strncmp(keys[i], s, l)) continue; in getsubopt()
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/
A Dmconf.c291 int *keys, int *vscroll, int *hscroll,
362 int *keys; member
379 data->keys[k] = key; in update_text()
389 data->keys[k] = 0; in update_text()
437 int keys[JUMP_NB + 1], i; in search_conf() local
441 .keys = keys, in search_conf()
448 str_get(&res), 0, 0, keys, &vscroll, in search_conf()
452 for (i = 0; i < JUMP_NB && keys[i]; i++) in search_conf()
453 if (dres == keys[i]) { in search_conf()
758 *keys, int *vscroll, int *hscroll, update_text_fn in show_textbox_ext() argument
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/lxdialog/
A Dtextbox.c57 int initial_width, int *keys, int *_vscroll, int *_hscroll, in dialog_textbox() argument
250 for (i = 0; keys[i]; i++) { in dialog_textbox()
251 if (key == keys[i]) { in dialog_textbox()
A Ddialog.h239 int initial_width, int *keys, int *_vscroll, int *_hscroll,
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dlinuxthreads.texi79 functions for thread-specific data are then called for all keys that
1113 area, or TSD area for short. This area is indexed by TSD keys. The TSD
1114 area associates values of type @code{void *} to TSD keys. TSD keys are
1119 pointers, TSD keys as integer indices into these arrays, and the value
1124 with all keys.
1131 @code{PTHREAD_KEYS_MAX} on the number of keys allocated at a given
1155 @code{pthread_key_create} returns 0 unless @code{PTHREAD_KEYS_MAX} keys
/l4re-core-master/cxx/lib/tl/include/
A Davl_tree115 /// Provide access to keys of nodes.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/std/
A Dranges3895 inline constexpr auto keys = elements<0>;
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/std/
A Dranges3808 inline constexpr __adaptor::_RangeAdaptorClosure keys = elements<0>;
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/
A DChangeLog2718 (keys, values): Adjust.
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/
A DChangeLog4977 ranges::views::elements, ranges::views::keys, ranges::views::values):

Completed in 57 milliseconds