Searched refs:bufLen (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/security/net/config/ |
D | DirectoryCertificateSource.java | 200 int bufLen = 8; // Max number of hex digits in an int 201 char[] buf = new char[bufLen]; 202 int cursor = bufLen; 206 } while ((i >>>= 4) != 0 || (bufLen - cursor < minWidth)); 208 return new String(buf, cursor, bufLen - cursor);
|
/frameworks/av/cmds/screenrecord/ |
D | Overlay.cpp | 255 void Overlay::getTimeString_l(nsecs_t monotonicNsec, char* buf, size_t bufLen) { in getTimeString_l() argument 261 snprintf(buf, bufLen, "%" PRId64, monotonicNsec); in getTimeString_l() 271 strftime(buf, bufLen, format, &tm); in getTimeString_l() 276 strlcat(buf, tmpBuf, bufLen); in getTimeString_l()
|
D | Overlay.h | 100 void getTimeString_l(nsecs_t monotonicNsec, char* buf, size_t bufLen);
|
/frameworks/base/libs/androidfw/include/androidfw/ |
D | ZipFileRO.h | 126 int getEntryFileName(ZipEntryRO entry, char* buffer, size_t bufLen) const;
|
/frameworks/base/libs/androidfw/ |
D | ZipFileRO.cpp | 193 int ZipFileRO::getEntryFileName(ZipEntryRO entry, char* buffer, size_t bufLen) in getEntryFileName() 199 if (bufLen < requiredSize) { in getEntryFileName()
|
/frameworks/minikin/libs/minikin/ |
D | Locale.cpp | 51 static bool isSubtag(const char* buf, size_t bufLen, const char* subtag, size_t subtagLen) { in isSubtag() argument 52 if (bufLen < subtagLen) { in isSubtag() 58 return (bufLen == subtagLen || buf[subtagLen] == '\0' || buf[subtagLen] == '-' || in isSubtag()
|