Searched refs:aLength (Results 1 - 25 of 26) sorted by relevance

12

/external/opencore/oscl/oscl/osclio/src/
H A Doscl_socket_recv.cpp70 uint8 *OsclRecvMethod::GetRecvData(int32 *aLength) argument
72 return RecvRequest()->GetRecvData(aLength);
96 uint8 *OsclRecvRequest::GetRecvData(int32 *aLength) argument
100 if (aLength)
101 *aLength = Param()->iBufRecv.iLen;
106 if (aLength)
107 *aLength = 0;
H A Doscl_socket_send.cpp71 uint8 *OsclSendMethod::GetSendData(int32 *aLength) argument
73 return SendRequest()->GetSendData(aLength);
98 uint8 *OsclSendRequest::GetSendData(int32 *aLength) argument
102 if (aLength)
103 *aLength = Param()->iXferLen;
108 if (aLength)
109 *aLength = 0;
H A Doscl_socket_send_to.cpp74 uint8 *OsclSendToMethod::GetSendData(int32 *aLength) argument
76 return SendToRequest()->GetSendData(aLength);
100 uint8 *OsclSendToRequest::GetSendData(int32 *aLength) argument
104 if (aLength)
105 *aLength = Param()->iXferLen;
110 if (aLength)
111 *aLength = 0;
H A Doscl_socket_recv_from.cpp73 uint8 *OsclRecvFromMethod::GetRecvData(int32 *aLength) argument
75 return RecvFromRequest()->GetRecvData(aLength);
106 uint8 *OsclRecvFromRequest::GetRecvData(int32 *aLength) argument
110 if (aLength)
111 *aLength = Param()->iBufRecv.iLen;
116 if (aLength)
117 *aLength = 0;
H A Doscl_udp_socket.h43 inline uint8 *GetRecvData(int32 *aLength);
44 inline uint8 *GetSendData(int32 *aLength);
83 inline uint8 *OsclUDPSocketI::GetRecvData(int32 *aLength) argument
85 return iRecvFromMethod->GetRecvData(aLength);
89 inline uint8 *OsclUDPSocketI::GetSendData(int32 *aLength) argument
91 return iSendToMethod->GetSendData(aLength);
H A Doscl_socket_recv.h42 uint8 *GetRecvData(int32 *aLength);
64 uint8 *GetRecvData(int32 *aLength);
H A Doscl_socket_send.h40 uint8 *GetSendData(int32 *aLength);
70 uint8 *GetSendData(int32 *aLength);
H A Doscl_socket_send_to.h41 uint8 *GetSendData(int32 *aLength);
70 uint8 *GetSendData(int32 *aLength);
H A Doscl_tcp_socket.h65 inline uint8 *GetRecvData(int32 *aLength) ;
66 inline uint8 *GetSendData(int32 *aLength);
144 inline uint8 *OsclTCPSocketI::GetRecvData(int32 *aLength) argument
146 return iRecvMethod->GetRecvData(aLength);
150 inline uint8 *OsclTCPSocketI::GetSendData(int32 *aLength) argument
152 return iSendMethod->GetSendData(aLength);
H A Doscl_ip_socket.h40 virtual uint8 *GetRecvData(int32 *aLength) = 0;
41 virtual uint8 *GetSendData(int32 *aLength) = 0;
H A Doscl_socket.cpp109 OSCL_EXPORT_REF uint8 *OsclUDPSocket::GetRecvData(int32 *aLength) argument
111 return iUDPSocket->GetRecvData(aLength);
114 OSCL_EXPORT_REF uint8 *OsclUDPSocket::GetSendData(int32 *aLength) argument
116 return iUDPSocket->GetSendData(aLength);
235 OSCL_EXPORT_REF uint8 *OsclTCPSocket::GetRecvData(int32 *aLength) argument
237 return iTCPSocket->GetRecvData(aLength);
240 OSCL_EXPORT_REF uint8 *OsclTCPSocket::GetSendData(int32 *aLength) argument
242 return iTCPSocket->GetSendData(aLength);
H A Doscl_socket_recv_from.h45 uint8 *GetRecvData(int32 *aLength);
67 uint8 *GetRecvData(int32 *aLength);
H A Doscl_socket.h217 * @param aLength: (output) number of bytes of data received.
221 OSCL_IMPORT_REF uint8 *GetRecvData(int32 *aLength);
228 * @param aLength: (output) number of bytes of data sent.
232 OSCL_IMPORT_REF uint8 *GetSendData(int32 *aLength);
461 * @param aLength: (output) number of bytes of data received.
465 OSCL_IMPORT_REF uint8 *GetRecvData(int32 *aLength);
472 * @param aLength: (output) number of bytes of data sent.
476 OSCL_IMPORT_REF uint8 *GetSendData(int32 *aLength);
/external/opencore/fileformats/avi/parser/include/
H A Dpv_avifile_parser_utils.h36 static uint32 read8(PVFile* aFp, uint8* aBuff, uint32 aLength);
/external/opencore/fileformats/avi/parser/src/
H A Dpv_avifile_parser_utils.cpp95 uint32 PVAviFileParserUtils::read8(PVFile* aFp, uint8* aBuff, uint32 aLength) argument
97 for (uint32 ii = 0; ii < aLength; ii++)
109 return aLength;
/external/opencore/codecs_v2/omx/omx_amr/include/
H A Damr_dec.h67 void GetStartPointsForIETFCombinedMode(OMX_U8* aPtrIn, OMX_U32 aLength,
/external/webkit/WebCore/platform/text/
H A DStringHash.h50 unsigned aLength = a->length(); local
52 if (aLength != bLength)
60 for (unsigned i = 0; i != aLength; ++i) {
70 unsigned halfLength = aLength >> 1;
75 if (aLength & 1 && *reinterpret_cast<const uint16_t*>(aChars) != *reinterpret_cast<const uint16_t*>(bChars))
/external/webkit/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp52 static void utf16_to_utf8(const UChar* aText, gint aLength, char* &text, gint &length) argument
57 for (i = 0; i < aLength; i++) {
63 if (i < aLength - 1 && IS_LOW_SURROGATE(aText[i+1]))
77 UChar* p = (UChar*)g_memdup(aText, aLength * sizeof(aText[0]));
80 for (i = 0; i < aLength; i++) {
84 if (i < aLength - 1 && IS_LOW_SURROGATE(aText[i+1]))
95 text = g_utf16_to_utf8(reinterpret_cast<const gunichar2*>(aText), aLength, NULL, &items_written, NULL);
/external/opencore/pvmi/pvmf/include/
H A Dpvmi_data_stream_interface.h408 * @param aLength length of clip in bytes
410 virtual void SetContentLength(uint32 aLength) argument
412 OSCL_UNUSED_ARG(aLength);
/external/opencore/protocols/http_parcom/src/
H A Dhttp_parcom_internal.h156 bool update(const uint32 aLength) argument
158 if (isSpaceEnough(aLength))
160 iLen += aLength;
/external/opencore/engines/common/include/
H A Dpv_plugin_interfaces.h781 void SetData(TUint8* aData, TInt aLength) argument
783 iPtr.Set(aData, aLength, aLength);
/external/opencore/nodes/pvprotocolenginenode/download_protocols/progressive_streaming/src/
H A Dpvmf_protocol_engine_node_progressive_streaming.h75 OSCL_IMPORT_REF void setContentLength(uint32 aLength);
H A Dpvmf_protocol_engine_node_progressive_streaming.cpp292 OSCL_EXPORT_REF void pvProgressiveStreamingOutput::setContentLength(uint32 aLength) argument
294 if (iDataStream) iDataStream->SetContentLength(aLength);
/external/opencore/codecs_v2/omx/omx_amr/src/
H A Damr_decode_frame.cpp258 (OMX_U8* aPtrIn, OMX_U32 aLength, OMX_U8* &aTocPtr, OMX_S32* aNumOfBytes)
265 while ((*(aTocPtr + FrameCnt) & Fbit) && (FrameCnt < aLength))
257 GetStartPointsForIETFCombinedMode(OMX_U8* aPtrIn, OMX_U32 aLength, OMX_U8* &aTocPtr, OMX_S32* aNumOfBytes) argument
/external/webkit/WebCore/platform/
H A DKURLGoogle.cpp1043 int aLength = a.m_url.utf8String().length(); local
1045 aLength = a.m_url.m_parsed.ref.begin - 1;
1051 return aLength == bLength
1052 && !strncmp(a.m_url.utf8String().data(), b.m_url.utf8String().data(), aLength);

Completed in 155 milliseconds

12