Home
last modified time | relevance | path

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

/external/curl/tests/http/clients/
Dh2-upgrade-extreme.c61 static int newl = 0; in debug_cb() local
89 if(!newl) { in debug_cb()
94 newl = 0; in debug_cb()
97 if(!newl) in debug_cb()
101 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
106 if(!newl) in debug_cb()
109 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
117 if(!newl) in debug_cb()
120 newl = 0; in debug_cb()
125 newl = 0; in debug_cb()
Dupload-pausing.c68 static int newl = 0; in debug_cb() local
96 if(!newl) { in debug_cb()
101 newl = 0; in debug_cb()
104 if(!newl) in debug_cb()
108 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
113 if(!newl) in debug_cb()
116 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
124 if(!newl) in debug_cb()
127 newl = 0; in debug_cb()
132 newl = 0; in debug_cb()
Dtls-session-reuse.c62 static int newl = 0; in debug_cb() local
90 if(!newl) { in debug_cb()
95 newl = 0; in debug_cb()
98 if(!newl) in debug_cb()
102 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
107 if(!newl) in debug_cb()
110 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
118 if(!newl) in debug_cb()
121 newl = 0; in debug_cb()
126 newl = 0; in debug_cb()
Dh2-pausing.c71 static int newl = 0; in debug_cb() local
99 if(!newl) { in debug_cb()
104 newl = 0; in debug_cb()
107 if(!newl) in debug_cb()
111 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
116 if(!newl) in debug_cb()
119 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
127 if(!newl) in debug_cb()
130 newl = 0; in debug_cb()
135 newl = 0; in debug_cb()
Dhx-download.c77 static int newl = 0; in debug_cb() local
105 if(!newl) { in debug_cb()
110 newl = 0; in debug_cb()
113 if(!newl) in debug_cb()
117 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
122 if(!newl) in debug_cb()
125 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
133 if(!newl) in debug_cb()
136 newl = 0; in debug_cb()
141 newl = 0; in debug_cb()
Dhx-upload.c73 static int newl = 0; in debug_cb() local
101 if(!newl) { in debug_cb()
106 newl = 0; in debug_cb()
109 if(!newl) in debug_cb()
113 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
118 if(!newl) in debug_cb()
121 newl = (size && (data[size - 1] != '\n')) ? 1 : 0; in debug_cb()
129 if(!newl) in debug_cb()
132 newl = 0; in debug_cb()
137 newl = 0; in debug_cb()
/external/python/cpython3/Parser/tokenizer/
Dstring_tokenizer.c59 const char *newl[2] = {NULL, NULL}; in decode_str() local
80 newl[lineno] = s; in decode_str()
88 if (newl[0]) { in decode_str()
89 if (!_PyTokenizer_check_coding_spec(str, newl[0] - str, tok, buf_setreadl)) { in decode_str()
92 if (tok->enc == NULL && tok->decoding_state != STATE_NORMAL && newl[1]) { in decode_str()
93 if (!_PyTokenizer_check_coding_spec(newl[0]+1, newl[1] - newl[0], in decode_str()
/external/curl/src/
Dtool_cb_dbg.c144 static bool newl = FALSE; in tool_debug_cb() local
154 if(!newl) { in tool_debug_cb()
159 newl = FALSE; in tool_debug_cb()
162 if(!newl) in tool_debug_cb()
166 newl = (size && (data[size - 1] != '\n')); in tool_debug_cb()
171 if(!newl) in tool_debug_cb()
174 newl = (size && (data[size - 1] != '\n')); in tool_debug_cb()
188 if(!newl) in tool_debug_cb()
191 newl = FALSE; in tool_debug_cb()
197 newl = FALSE; in tool_debug_cb()
/external/libxml2/result/
Dent11.sax4 SAX.entityDecl(newl, 1, (null), (null),
6 SAX.getEntity(newl)
9 SAX.getEntity(newl)
12 SAX.reference(newl)
Dent11.sax24 SAX.entityDecl(newl, 1, (null), (null),
6 SAX.getEntity(newl)
9 SAX.getEntity(newl)
12 SAX.reference(newl)
Dent11.rdr3 1 5 newl 0 0
/external/libxml2/result/noent/
Dent11.sax24 SAX.entityDecl(newl, 1, (null), (null),
6 SAX.getEntity(newl)
9 SAX.getEntity(newl)
/external/curl/tests/unit/
Dunit1664.c230 static const char *newl[] = { variable
244 for(i = 0; newl[i]; i++) {
245 char *line = (char *)newl[i];
/external/python/cpython3/Lib/xml/dom/
Dminidom.py49 def toprettyxml(self, indent="\t", newl="\n", encoding=None, argument
60 self.writexml(writer, "", indent, newl, encoding, standalone)
62 self.writexml(writer, "", indent, newl)
887 def writexml(self, writer, indent="", addindent="", newl=""): argument
911 writer.write(newl)
913 node.writexml(writer, indent+addindent, addindent, newl)
915 writer.write("</%s>%s" % (self.tagName, newl))
917 writer.write("/>%s"%(newl))
1030 def writexml(self, writer, indent="", addindent="", newl=""): argument
1031 writer.write("%s<?%s %s?>%s" % (indent,self.target, self.data, newl))
[all …]
/external/compiler-rt/lib/BlocksRuntime/
Druntime.c51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
53 long original = InterlockedCompareExchange(dst, newl, oldl); in OSAtomicCompareAndSwapLong()
72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) { in OSAtomicCompareAndSwapLong() argument
73 return __sync_bool_compare_and_swap(dst, oldl, newl); in OSAtomicCompareAndSwapLong()
/external/toybox/kconfig/lxdialog/
Dutil.c316 int newl, cur_x, cur_y; in print_autowrap() local
338 newl = 1; in print_autowrap()
351 (newl && wlen < 4 && sp in print_autowrap()
365 newl = 1; in print_autowrap()
367 newl = 0; in print_autowrap()
/external/coreboot/util/kconfig/lxdialog/
Dutil.c371 int newl, cur_x, cur_y; in print_autowrap() local
385 newl = 1; in print_autowrap()
401 (newl && wlen < 4 && sp in print_autowrap()
423 newl = 1; in print_autowrap()
425 newl = 0; in print_autowrap()
/external/selinux/libsepol/include/sepol/policydb/
Dexpand.h81 cond_av_list_t ** newl, avtab_t * expa);
/external/coreboot/util/kconfig/patches/
D0004-src-util-Use-NULL-instead-of-0-for-pointer.patch18 int newl, cur_x, cur_y;
/external/python/cpython3/Doc/library/
Dxml.dom.minidom.rst135 .. method:: Node.writexml(writer, indent="", addindent="", newl="", \
142 of the current one. The *newl* parameter specifies the string to use to
183 .. method:: Node.toprettyxml(indent="\t", newl="\n", encoding=None, \
187 indentation string and defaults to a tabulator; *newl* specifies the string
/external/rust/android-crates-io/crates/arrayvec/src/
Darray_string.rs292 let newl = self.len() + s.len(); in try_push_str() localVariable
293 self.set_len(newl); in try_push_str()
/external/selinux/libsepol/src/
Dexpand.c3412 cond_av_list_t ** newl, avtab_t * expa) in expand_cond_av_node() argument
3430 return expand_cond_insert(newl, expa, k, d); in expand_cond_av_node()
3438 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node()
3450 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node()
3462 rc = expand_cond_insert(newl, expa, &newkey, d); in expand_cond_av_node()
3472 cond_av_list_t ** newl, avtab_t * expa) in expand_cond_av_list() argument
3483 *newl = NULL; in expand_cond_av_list()
3486 rc = expand_cond_av_node(p, node, newl, expa); in expand_cond_av_list()
/external/mksh/src/
Dedit.c5147 redraw_line(bool newl) in redraw_line() argument
5151 if (newl) { in redraw_line()
/external/python/cpython3/Lib/test/
Dtest_minidom.py551 domstr = dom.toprettyxml(newl="\r\n")