HomeSort by relevance Sort by last modified time
    Searched refs:eol (Results 26 - 50 of 257) sorted by null

12 3 4 5 6 7 8 91011

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 67 maxlinelen=76, eol=NL):
81 Each line of the header will be terminated in the value of eol, which
119 joiner = eol + ' '
125 def encode(s, binary=True, maxlinelen=76, eol=NL):
135 Each line of encoded text will end with eol, which defaults to "\\n". Set
151 if enc.endswith(NL) and eol != NL:
152 enc = enc[:-1] + eol
  /external/valgrind/coregrind/m_ume/
script.c 76 Int eol; local
103 eol = (*cp == '\n');
107 if (!eol && cp < end) {
112 /* arg is from here to eol */
  /packages/services/Car/service/src/com/android/car/storagemonitoring/
EMmcWearInformationProvider.java 90 int eol; local
95 eol = Integer.decode("0x" + eolData);
104 adjustEol(eol));
UfsWearInformationProvider.java 73 Optional<Integer> eol = Optional.empty(); local
89 eol = Optional.of(Integer.decode(value));
104 if (!lifetimeA.isPresent() || !lifetimeB.isPresent() || !eol.isPresent()) {
110 adjustEol(eol.get()));
  /external/toybox/toys/posix/
uniq.c 64 char *thisline = NULL, *prevline = NULL, *tmpline, eol = '\n'; local
70 if (toys.optflags & FLAG_z) eol = 0;
73 if (getdelim(&prevline, &prevsize, eol, infile) < 0)
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) {
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
CodeAttribute_info.java 143 String eol = System.getProperty ("line.separator"); local
147 s.append ("CodeAttribute_info: [attribute_name_index = " + m_name_index + ", attribute_length = " + m_attribute_length + "]" + eol);
148 s.append (" max_stack/max_locals = " + m_max_stack + '/' + m_max_locals + eol);
149 s.append (" code [length " + m_codeSize + "]" + eol);
153 s.append (" " + m_attributes.get (a) + eol);
  /system/core/libutils/
Tokenizer.cpp 114 const char* eol = mCurrent; local
115 while (eol != end) {
116 char ch = *eol;
120 eol += 1;
122 return String8(mCurrent, eol - mCurrent);
  /external/iw/
coalesce.c 47 char *eol; local
52 eol = strchr(buf + 5, '\r');
53 if (eol)
54 *eol = 0;
55 eol = strchr(buf + 5, '\n');
56 if (eol)
57 *eol = 0;
  /external/libunwind/src/
os-linux.h 219 char *eol = NULL; local
225 eol = mi->buf + i;
231 if (!eol)
252 eol = mi->buf + bytes_left + nread - 1;
257 eol = mi->buf + i;
262 mi->buf = eol + 1;
263 *eol = '\0';
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
fastgrep.c 65 fg->eol = false;
93 fg->eol = false;
99 fg->eol = true;
155 if ((!(lflag || cflag)) && ((!(fg->bol || fg->eol)) &&
224 if (fg->bol || fg->eol) {
229 j = fg->eol ? len - fg->len : 0;
230 if (!((fg->bol && fg->eol) && (len != fg->len)))
  /external/curl/tests/
directories.pm 167 'eol' => "\r\n",
176 'eol' => "\r\n",
184 'eol' => "\r\n",
193 $eol = $$list{'eol'};
215 push(@contentlist, "$ftype$fperm $fhlink $fuser $fgroup $fsize $ftime $file{'name'}$eol");
232 push(@contentlist, "$time $size_or_dir $file{'name'}$eol");
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 136 eol (); method
142 eol (); method
160 eol (); method
164 eol (); method
173 eol (); method
177 eol (); method
263 super.write (IConstants.EOL, 0, IConstants.EOL.length ());
365 eol (); method
379 eol (); method
392 eol (); method
407 eol (); method
448 eol (); method
479 private void eol () method in class:ReportGenerator
    [all...]
  /art/runtime/
indenter.h 42 const char* eol = static_cast<const char*>(memchr(s, '\n', n)); variable
43 while (eol != nullptr) {
44 size_t to_write = eol + 1 - s;
49 eol = static_cast<const char*>(memchr(s, '\n', n));
  /hardware/interfaces/health/2.0/
types.hal 58 * pre-eol (end of life) information. Follows JEDEC standard No.84-B50.
60 uint16_t eol;
  /system/core/storaged/include/
storaged_info.h 43 uint16_t eol; // pre-eol (end of life) information member in class:storage_info_t
61 storage_info_t() : eol(0), lifetime_a(0), lifetime_b(0),
  /system/core/storaged/
storaged_info.cpp 140 << version << eol << lifetime_a << lifetime_b
262 if (sscanf(buffer.c_str(), "%hx", &eol) < 1 || eol == 0) {
309 if (!ParseUint(str, &eol)) {
356 eol = val;
364 if (eol == 0 || (lifetime_a == 0 && lifetime_b == 0)) {
388 eol = halInfo.eol;
  /external/webrtc/webrtc/sound/
pulseaudiosoundsystem.cc 502 int eol,
506 data->instance->OnGetVolumeCallback(info, eol, &data->channel_volumes);
510 int eol,
512 if (eol) {
533 int eol,
537 data->instance->OnGetSourceChannelCountCallback(info, eol, &data->channels);
541 int eol,
543 if (eol) {
916 int eol,
920 data->instance->OnGetVolumeCallback(info, eol, &data->channel_volumes)
    [all...]
  /external/python/cpython3/Lib/email/
quoprimime.py 152 def body_encode(body, maxlinelen=76, eol=NL):
155 Each line of encoded text will end with eol, which defaults to "\\n". Set
160 eol string (maxlinelen defaults to 76 characters, the maximum value
179 soft_break = '=' + eol
225 return eol.join(encoded_body)
231 def decode(encoded, eol=NL):
234 Lines are separated with eol, which defaults to \\n.
246 decoded += eol
271 decoded += eol
272 # Special case if original string did not end with eol
    [all...]
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_mixer_manager_pulse_linux.cc 981 int eol,
985 PaSinkInfoCallbackHandler(i, eol);
992 int eol,
996 PaSinkInputInfoCallbackHandler(i, eol);
1003 int eol,
1007 PaSourceInfoCallbackHandler(i, eol);
1024 int eol)
1026 if (eol)
1053 int eol)
1055 if (eol)
    [all...]
  /external/autotest/client/cros/update_engine/
nano_omaha_devserver.py 21 def __init__(self, eol=False):
25 @param eol: True if we should return a response with _eol flag
28 self._eol = eol
68 <updatecheck _eol=\"eol\" status=\"noupdate\"/>
  /external/chromium-trace/catapult/systrace/profile_chrome/
profiler.py 94 (interval, trace_type)), eol='')
98 eol='')
  /external/ppp/pppd/
utils.c 556 char *p, *eol; local
573 eol = strchr(buf, '\n');
575 l = (eol == NULL)? n: eol - buf;
581 if (eol == NULL)
583 p = eol + 1;
584 eol = strchr(p, '\n');
591 while (eol != NULL) {
592 *eol = 0;
594 p = eol + 1
    [all...]
  /external/autotest/client/site_tests/autoupdate_EOL/
autoupdate_EOL.py 13 """Tests end of life (EOL) behaviour."""
16 _EXPECTED_EOL_STATUS = 'EOL_STATUS=eol'
25 """Checks update_engines eol status."""
33 """Checks that we are showing an EOL notification to the user."""
54 # Start a devserver to return a response with eol entry.
55 self._omaha = nano_omaha_devserver.NanoOmahaDevserver(eol=True)
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLWriter.java 70 public void eol () method in class:HTMLWriter
76 m_out.write (IConstants.EOL);
  /external/nist-pkits/
generate-tests.sh 71 ${PDFTOTEXT} -layout -nopgbrk -eol unix "${PDF}" "${TEMP_TEXT}"

Completed in 552 milliseconds

12 3 4 5 6 7 8 91011