/aosp12/system/chre/util/nanoapp/ |
H A D | wifi.cc | 65 bool parseSsidToStr(char *buffer, size_t bufferLen, const uint8_t *ssid, in parseSsidToStr() argument 69 bool success = (bufferLen >= static_cast<size_t>(ssidLen + 1)); in parseSsidToStr() 91 size_t bufferLen) { in parseBssidToStr() argument 96 if (bufferLen >= kBssidStrLen) { in parseBssidToStr() 98 snprintf(buffer, bufferLen, kFormat, bssid[0], bssid[1], bssid[2], bssid[3], in parseBssidToStr()
|
/aosp12/frameworks/base/core/java/com/android/internal/util/ |
H A D | FastPrintWriter.java | 121 public FastPrintWriter(OutputStream out, boolean autoFlush, int bufferLen) { in FastPrintWriter() argument 126 mBufferLen = bufferLen; in FastPrintWriter() 127 mText = new char[bufferLen]; in FastPrintWriter() 190 public FastPrintWriter(Writer wr, boolean autoFlush, int bufferLen) { in FastPrintWriter() argument 195 mBufferLen = bufferLen; in FastPrintWriter() 196 mText = new char[bufferLen]; in FastPrintWriter() 233 public FastPrintWriter(Printer pr, int bufferLen) { in FastPrintWriter() argument 238 mBufferLen = bufferLen; in FastPrintWriter() 239 mText = new char[bufferLen]; in FastPrintWriter()
|
/aosp12/system/chre/platform/freertos/ |
H A D | platform_nanoapp.cc | 201 size_t bufferLen) { in copyNanoappFragment() argument 208 if ((mBytesLoaded + bufferLen) > mAppBinaryLen) { in copyNanoappFragment() 210 bufferLen, mBytesLoaded, mAppBinaryLen); in copyNanoappFragment() 214 memcpy(binaryBuffer, buffer, bufferLen); in copyNanoappFragment() 215 mBytesLoaded += bufferLen; in copyNanoappFragment()
|
/aosp12/system/chre/platform/slpi/ |
H A D | platform_nanoapp.cc | 121 size_t bufferLen) { in copyNanoappFragment() argument 125 if (mBytesLoaded + bufferLen > mAppBinaryLen) { in copyNanoappFragment() 127 bufferLen, mBytesLoaded, mAppBinaryLen); in copyNanoappFragment() 131 memcpy(binaryBuffer, buffer, bufferLen); in copyNanoappFragment() 132 mBytesLoaded += bufferLen; in copyNanoappFragment()
|
H A D | host_link.cc | 536 const void *buffer, size_t bufferLen, in handleLoadNanoappData() argument 543 size_t totalAppBinaryLen = (fragmentId == 0) ? bufferLen : appBinaryLen; in handleLoadNanoappData() 563 bufferLen); in handleLoadNanoappData() 585 int bufferLen, in chre_slpi_get_message_to_host() argument 588 CHRE_ASSERT(bufferLen > 0); in chre_slpi_get_message_to_host() 592 if (bufferLen <= 0 || buffer == nullptr || messageLen == nullptr) { in chre_slpi_get_message_to_host() 596 bufferLen, (buffer == nullptr), (messageLen == nullptr)); in chre_slpi_get_message_to_host() 598 size_t bufferSize = static_cast<size_t>(bufferLen); in chre_slpi_get_message_to_host() 869 const void *buffer, size_t bufferLen, const char *appFileName, in handleLoadNanoappRequest() argument 879 targetApiVersion, buffer, bufferLen, fragmentId, appBinaryLen); in handleLoadNanoappRequest()
|
/aosp12/system/chre/util/include/chre/util/nanoapp/ |
H A D | wifi.h | 50 bool parseSsidToStr(char *buffer, size_t bufferLen, const uint8_t *ssid, 62 size_t bufferLen);
|
/aosp12/system/nfc/src/adaptation/ |
H A D | CrcChecksum.cc | 72 uint16_t crcChecksumCompute(const unsigned char* buffer, int bufferLen) { in crcChecksumCompute() argument 75 int cnt = bufferLen; in crcChecksumCompute()
|
/aosp12/system/chre/platform/shared/ |
H A D | nanoapp_load_manager.cc | 56 size_t bufferLen) { in copyNanoappFragment() argument 59 success = mNanoapp->copyNanoappFragment(buffer, bufferLen); in copyNanoappFragment()
|
/aosp12/system/nfc/src/include/ |
H A D | CrcChecksum.h | 32 uint16_t crcChecksumCompute(const unsigned char* buffer, int bufferLen);
|
/aosp12/frameworks/rs/ |
H A D | rsThreadIO.cpp | 185 uint32_t *usrID, size_t bufferLen) { in getClientPayload() argument 189 if (bufferLen < mLastClientHeader.bytes) { in getClientPayload()
|
H A D | rsContext.cpp | 217 uint32_t bufferLen = strlen(buffer); in displayDebugStats() local 223 mStateFont.renderText(buffer, bufferLen, 5, getHeight() - 6); in displayDebugStats() 226 mStateFont.renderText(buffer, bufferLen, 4, getHeight() - 7); in displayDebugStats() 698 …pe Context::getMessageToClient(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen) { in getMessageToClient() argument 699 return (RsMessageToClientType)mIO.getClientPayload(data, receiveLen, subID, bufferLen); in getMessageToClient()
|
H A D | rsThreadIO.h | 62 …geToClientType getClientPayload(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen);
|
H A D | rsContext.h | 159 …ToClientType getMessageToClient(void *data, size_t *receiveLen, uint32_t *subID, size_t bufferLen);
|
/aosp12/packages/apps/Nfc/nci/jni/ |
H A D | PeerToPeer.h | 224 bool send(tJNI_HANDLE jniHandle, uint8_t* buffer, uint16_t bufferLen); 239 bool receive(tJNI_HANDLE jniHandle, uint8_t* buffer, uint16_t bufferLen,
|
H A D | PeerToPeer.cpp | 849 uint16_t bufferLen) { in send() argument 866 nfaStat = NFA_P2pSendData(pConn->mNfaConnHandle, bufferLen, buffer); in send() 907 uint16_t bufferLen, uint16_t& actualLen) { in receive() argument 910 "%s: enter; jniHandle: %u bufferLen: %u", fn, jniHandle, bufferLen); in receive() 925 pConn->mJniHandle, pConn->mNfaConnHandle, bufferLen); in receive() 929 stat = NFA_P2pReadData(pConn->mNfaConnHandle, bufferLen, &actualDataLen2, in receive()
|
/aosp12/system/chre/host/msm/daemon/generated/ |
H A D | chre_slpi.h | 44 …__QAIC_HEADER(chre_slpi_get_message_to_host)(unsigned char* buffer, int bufferLen, unsigned int* m…
|
H A D | chre_slpi_stub.c | 585 …t __QAIC_STUB(chre_slpi_get_message_to_host)(unsigned char* buffer, int bufferLen, unsigned int* m… in __QAIC_STUB() 587 …return _stub_method_1(_chre_slpi_handle(), _mid, (unsigned char**)&buffer, (int*)&bufferLen, (unsi… in __QAIC_STUB()
|
/aosp12/system/chre/platform/shared/include/chre/platform/shared/ |
H A D | nanoapp_load_manager.h | 79 size_t bufferLen);
|
H A D | host_protocol_chre.h | 64 const void *buffer, size_t bufferLen, const char *appFileName,
|
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
H A D | SmsMessage.java | 934 int bufferLen; in constructUserData() local 941 bufferLen = mPdu.length - offset; in constructUserData() 947 bufferLen = userDataLength - (hasUserDataHeader ? (userDataHeaderLength + 1) : 0); in constructUserData() 948 if (bufferLen < 0) { in constructUserData() 949 bufferLen = 0; in constructUserData() 953 mUserData = new byte[bufferLen]; in constructUserData()
|
/aosp12/frameworks/av/drm/common/ |
H A D | IDrmManagerService.cpp | 95 const int bufferLen = data.readInt32(); in readDecryptHandleFromParcelData() local 96 if (INVALID_BUFFER_LENGTH != bufferLen) { in readDecryptHandleFromParcelData() 98 handle->decryptInfo->decryptBufferLength = bufferLen; in readDecryptHandleFromParcelData()
|
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/ |
H A D | httpcore-4.4.13.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |