Searched refs:fromLen (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/base/security/device_security_level/baselib/utils/src/ |
H A D | utils_base64.c | 64 uint32_t tmpLen = fromLen; in Base64Encode() 77 for (uint32_t i = 0; i < fromLen;) { in Base64Encode() 78 uint32_t a = (i < fromLen) ? (uint8_t)from[i] : 0; in Base64Encode() 80 uint32_t b = (i < fromLen) ? (uint8_t)from[i] : 0; in Base64Encode() 82 uint32_t c = (i < fromLen) ? (uint8_t)from[i] : 0; in Base64Encode() 112 uint32_t fromLen = strlen((char *)from); in Base64Decode() local 114 bool isInvalidLength = ((fromLen < 4) || ((fromLen % 4) != 0)); in Base64Decode() 119 uint32_t toLen = fromLen / 4 * 3; /* Base64 decode size */ in Base64Decode() 131 for (uint32_t i = 0; i < fromLen;) { in Base64Decode() 161 uint8_t *Base64EncodeApp(const uint8_t *from, uint32_t fromLen) in Base64EncodeApp() argument [all …]
|
/ohos5.0/base/security/device_security_level/baselib/utils/include/ |
H A D | utils_base64.h | 29 uint8_t *Base64EncodeApp(const uint8_t *from, uint32_t fromLen);
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/ |
H A D | callbacks.c | 1201 OUT void *from, IO FILLP_SIZE_T *fromLen) in FillpFuncRecvFrom() argument 1205 … return (FILLP_INT)recvfrom(sockFd, buf, (int)len, flags, (struct sockaddr *)from, (int *)fromLen); in FillpFuncRecvFrom() 1207 return (FILLP_INT)recvfrom(sockFd, buf, len, flags, (struct sockaddr *)from, (int *)fromLen); in FillpFuncRecvFrom() 1210 return (FILLP_INT)recvfrom(sockFd, buf, len, flags, from, (socklen_t *)fromLen); in FillpFuncRecvFrom()
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/ |
H A D | callbacks.h | 369 IO FILLP_SIZE_T *fromLen);
|
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/include/ |
H A D | fillpcallbacks.h | 770 IN FILLP_SIZE_T len, IN FILLP_INT flags, OUT void *from, IO FILLP_SIZE_T *fromLen);
|