HomeSort by relevance Sort by last modified time
    Searched refs:lenl (Results 1 - 2 of 2) sorted by null

  /external/toybox/toys/net/
ftpget.c 99 unsigned long long lenl = 0, lenr; local
167 lenl = fdlength(ii);
176 if (lenl>=lenr) goto done;
177 sprintf(buf, "%llu", lenl);
179 } else lenl = 0;
182 lenl += xsendfile(port, ii);
188 xlseek(ii, lenl, SEEK_SET);
195 if (lenl != lenr) error_exit("short %lld/%lld", lenl, lenr);
  /system/core/logd/
LogBuffer.cpp 137 ssize_t lenl = elem->getMsgLen(); local
138 if (lenl <= 0) return DIFFERENT; // value if this represents a chatty elem
155 if (lenl == lenr) {
156 if (!fastcmp<memcmp>(msgl, msgr, lenl)) return SAME;
159 (lenl == sizeof(android_log_event_int_t)) &&
174 lenl -= sizeof(android_log_event_string_t);
179 const char* avcl = android::strnstr(msgl, lenl, avc);
181 lenl -= avcl - msgl;
185 if (lenl != lenr) return DIFFERENT;
187 lenl - strlen(avc)))
    [all...]

Completed in 66 milliseconds