/external/curl/tests/libtest/ |
D | lib510.c | 62 struct curl_slist *slist = NULL; in test() local 77 slist = curl_slist_append(slist, "Transfer-Encoding: chunked"); in test() 78 if(slist == NULL) { in test() 109 test_setopt(curl, CURLOPT_HTTPHEADER, slist); in test() 122 if(slist) in test() 123 curl_slist_free_all(slist); in test()
|
D | lib579.c | 91 struct curl_slist *slist = NULL; in test() local 106 slist = curl_slist_append(slist, "Transfer-Encoding: chunked"); in test() 107 if(slist == NULL) { in test() 138 test_setopt(curl, CURLOPT_HTTPHEADER, slist); in test() 153 if(slist) in test() 154 curl_slist_free_all(slist); in test()
|
D | lib539.c | 31 struct curl_slist *slist = NULL; in test() local 68 slist = curl_slist_append (NULL, "SYST"); in test() 69 if(slist == NULL) { in test() 78 test_setopt(curl, CURLOPT_QUOTE, slist); in test() 84 curl_slist_free_all(slist); in test()
|
D | lib1510.c | 39 struct curl_slist *slist = NULL, *slist2; in test() local 50 slist2 = curl_slist_append(slist, dnsentry); in test() 55 slist = slist2; in test() 70 easy_setopt(curl, CURLOPT_RESOLVE, slist); in test() 94 curl_slist_free_all(slist); in test()
|
D | lib1512.c | 42 struct curl_slist *slist = NULL; in test() local 55 slist = curl_slist_append(slist, dnsentry); in test() 76 easy_setopt(curl[0], CURLOPT_RESOLVE, slist); in test() 86 curl_slist_free_all(slist); in test()
|
D | lib1506.c | 41 struct curl_slist *slist = NULL, *slist2; in test() local 52 slist2 = curl_slist_append(slist, dnsentry); in test() 57 slist = slist2; in test() 83 easy_setopt(curl[i], CURLOPT_RESOLVE, slist); in test() 131 curl_slist_free_all(slist); in test()
|
/external/curl/docs/examples/ |
D | certinfo.c | 74 struct curl_slist *slist; in main() local 76 for(slist = ptr.to_certinfo->certinfo[i]; slist; slist = slist->next) in main() 77 printf("%s\n", slist->data); in main()
|
/external/libpcap/ |
D | gencode.h | 205 struct slist; 209 struct slist *jt; /*only for relative jump in block*/ 210 struct slist *jf; /*only for relative jump in block*/ 214 struct slist { struct 216 struct slist *next; argument 249 struct slist *stmts; /* side effect stmts */ 273 struct slist *s; /* stmt list */ 359 void sappend(struct slist *, struct slist *);
|
D | gencode.c | 243 static inline struct slist *new_stmt(int); 259 static struct slist *gen_load_absoffsetrel(bpf_abs_offset *, u_int, u_int); 260 static struct slist *gen_load_a(enum e_offrel, u_int, u_int); 261 static struct slist *gen_loadx_iphdrlen(void); 268 static struct slist *gen_load_prism_llprefixlen(void); 269 static struct slist *gen_load_avs_llprefixlen(void); 270 static struct slist *gen_load_radiotap_llprefixlen(void); 271 static struct slist *gen_load_ppi_llprefixlen(void); 273 static struct slist *gen_abs_offset_varpart(bpf_abs_offset *); 313 static struct slist *xfer_to_x(struct arth *); [all …]
|
D | optimize.c | 415 struct slist *s; in compute_local_ud() 643 static inline struct slist * 644 this_op(struct slist *s) in this_op() 663 struct slist *s; in opt_peep() 664 struct slist *next, *last; in opt_peep() 714 struct slist *add, *tax, *ild; in opt_peep() 1139 register struct slist *s; in opt_deadstores() 1159 struct slist *s; in opt_blk() 1634 struct slist *tmp, *s; in opt_root() 1740 eq_slist(struct slist *x, struct slist *y) in eq_slist() [all …]
|
/external/google-breakpad/src/common/solaris/ |
D | dump_symbols.cc | 63 struct slist { struct 163 inline void RecalculateOffset(struct slist* cur_list, char *stabstr) { in RecalculateOffset() 248 int LoadStackParamSize(struct slist *list, in LoadStackParamSize() 249 struct slist *list_end, in LoadStackParamSize() 251 struct slist *cur_list = list; in LoadStackParamSize() 262 int LoadLineInfo(struct slist *list, in LoadLineInfo() 263 struct slist *list_end, in LoadLineInfo() 265 struct slist *cur_list = list; in LoadLineInfo() 291 int LoadFuncSymbols(struct slist *list, in LoadFuncSymbols() 292 struct slist *list_end, in LoadFuncSymbols() [all …]
|
/external/toybox/toys/posix/ |
D | cut.c | 41 struct slist { struct 42 struct slist *next; argument 48 struct slist *current, *head_ref, *temp1_node; in add_to_list() argument 51 temp1_node = xzalloc(sizeof(struct slist)); in add_to_list() 135 struct slist *temp_node = TT.slist_head; in do_fcut() 196 struct slist *temp_node = TT.slist_head; in do_bccut()
|
/external/lldb/test/lang/cpp/namespace/ |
D | TestNamespace.py | 57 slist = ['(int) a = 12', 'anon_uint', 'a_uint', 'b_uint', 'y_uint'] 59 slist = ['(int) a = 12', 67 substrs = slist)
|
/external/openfst/src/include/fst/ |
D | slist.h | 31 using __gnu_cxx::slist; 43 template <typename T> class slist : public list<T> {
|
D | config.h.in | 10 /* Define to 1 if the system has the type `__gnu_cxx::slist<int>'. */
|
D | determinize.h | 151 typedef slist< DeterminizeElement<Arc> > Subset; 198 typedef slist<Element> Subset; 469 typedef slist<Element> Subset;
|
/external/libcxx/utils/sym_check/sym_check/ |
D | util.py | 42 def read_syms_from_list(slist): argument 47 return [ast.literal_eval(l) for l in slist]
|
/external/openfst/ |
D | configure.ac | 31 AC_CHECK_TYPES([__gnu_cxx::slist<int>], [], [], 32 [[#include <ext/slist>]])
|
/external/curl/lib/ |
D | Makefile.inc | 50 curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c pop3.c smtp.c \ 68 slist.h nonblock.h curl_memrchr.h imap.h pop3.h smtp.h pingpong.h \
|
/external/autotest/client/tests/crashme/ |
D | crashme_2.4-9.diff | 347 struct status_list *slist = NULL; 353 for(l=slist;l != NULL; l = l->next) 355 slist = l; 363 for(l=slist;l != NULL; l = l->next)
|
/external/curl/packages/Symbian/group/ |
D | libcurl.mmp | 35 socks_sspi.c curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c \
|
/external/openfst/src/include/fst/extensions/pdt/ |
D | expand.h | 499 slist<pair<StateId, Weight> > cached_dest_list_; 672 for (typename slist<pair<StateId, Weight> >::const_iterator iter = in PruneArc() 758 slist<StateId> sources; in ProcOpenParen() 764 for (typename slist<StateId>::const_iterator sources_iter = sources.begin(); in ProcOpenParen()
|
/external/selinux/libsemanage/src/ |
D | pywrap-test.py | 144 (status, slist) = semanage.semanage_seuser_list(sh) 149 if ( len(slist) == 0): 153 for seuser in slist:
|
/external/openfst/src/include/ |
D | Makefile.am | 63 fst/const-fst.h fst/heap.h fst/push.h fst/state-table.h fst/slist.h \
|
D | Makefile.in | 75 fst/state-table.h fst/slist.h fst/pair-weight.h fst/config.h \ 329 fst/const-fst.h fst/heap.h fst/push.h fst/state-table.h fst/slist.h \
|