Searched refs:linearBufferLength (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeLlcpServiceSocket.java38 private native NativeLlcpSocket doAccept(int miu, int rw, int linearBufferLength); argument
H A DNativeNfcManager.java141 int rw, int linearBufferLength);
144 int rw, int linearBufferLength) throws LlcpException {
145 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
165 int linearBufferLength);
168 int linearBufferLength) throws LlcpException {
169 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
140 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
143 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
164 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
167 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeLlcpServiceSocket.java38 private native NativeLlcpSocket doAccept(int miu, int rw, int linearBufferLength); argument
H A DNativeNfcManager.java200 int rw, int linearBufferLength);
203 int rw, int linearBufferLength) throws LlcpException {
204 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
224 int linearBufferLength);
227 int linearBufferLength) throws LlcpException {
228 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
199 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
202 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
223 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
226 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeLlcpServiceSocket.cpp70 static jobject com_NativeLlcpServiceSocket_doAccept(JNIEnv *e, jobject o, jint miu, jint rw, jint linearBufferLength) argument
99 sWorkingBuffer.buffer = (uint8_t*)malloc((miu*rw)+miu+linearBufferLength);
100 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
H A Dcom_android_nfc_NativeNfcManager.cpp1969 static jobject com_android_nfc_NfcManager_doCreateLlcpServiceSocket(JNIEnv *e, jobject o, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
1989 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
2077 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
2078 TRACE("Service socket Linear buffer length = %02x\n",linearBufferLength);
2098 static jobject com_android_nfc_NfcManager_doCreateLlcpSocket(JNIEnv *e, jobject o, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
2117 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java194 int rw, int linearBufferLength) throws LlcpException;
197 int linearBufferLength) throws LlcpException;
193 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
196 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
H A DNfcService.java1557 public LlcpSocket createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
1559 return mDeviceHost.createLlcpSocket(sap, miu, rw, linearBufferLength);
1574 int linearBufferLength) throws LlcpException {
1575 return mDeviceHost.createLlcpServerSocket(sap, sn, miu, rw, linearBufferLength);
1573 createLlcpServerSocket(int sap, String sn, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/nci/jni/
H A DNativeNfcManager.cpp1114 ** linearBufferLength: Max buffer size.
1119 static jobject nfcManager_doCreateLlcpServiceSocket (JNIEnv* e, jobject, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
1125 ALOGD ("%s: enter: sap=%i; name=%s; miu=%i; rw=%i; buffLen=%i", __FUNCTION__, nSap, serviceName.c_str(), miu, rw, linearBufferLength);
1159 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
1160 ALOGD ("%s: buffer length = %d", __FUNCTION__, linearBufferLength);
1265 ** linearBufferLength: Max buffer size.
1270 static jobject nfcManager_doCreateLlcpSocket (JNIEnv* e, jobject, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
1272 ALOGD ("%s: enter; sap=%d; miu=%d; rw=%d; buffer len=%d", __FUNCTION__, nSap, miu, rw, linearBufferLength);

Completed in 130 milliseconds