Searched defs: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.java143 int rw, int linearBufferLength);
146 int rw, int linearBufferLength) throws LlcpException {
147 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
167 int linearBufferLength);
170 int linearBufferLength) throws LlcpException {
171 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
142 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
145 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
166 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
169 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.java201 int rw, int linearBufferLength);
204 int rw, int linearBufferLength) throws LlcpException {
205 LlcpServerSocket socket = doCreateLlcpServiceSocket(nSap, sn, miu, rw, linearBufferLength);
225 int linearBufferLength);
228 int linearBufferLength) throws LlcpException {
229 LlcpSocket socket = doCreateLlcpSocket(sap, miu, rw, linearBufferLength);
200 doCreateLlcpServiceSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
203 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
224 doCreateLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
227 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
/packages/apps/Nfc/nxp/jni/
H A Dcom_android_nfc_NativeLlcpServiceSocket.cpp71 static jobject com_NativeLlcpServiceSocket_doAccept(JNIEnv *e, jobject o, jint miu, jint rw, jint linearBufferLength) argument
100 sWorkingBuffer.buffer = (uint8_t*)malloc((miu*rw)+miu+linearBufferLength);
101 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
H A Dcom_android_nfc_NativeNfcManager.cpp1980 static jobject com_android_nfc_NfcManager_doCreateLlcpServiceSocket(JNIEnv *e, jobject o, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
2000 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
2088 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
2089 TRACE("Service socket Linear buffer length = %02x\n",linearBufferLength);
2109 static jobject com_android_nfc_NfcManager_doCreateLlcpSocket(JNIEnv *e, jobject o, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
2128 sWorkingBuffer.length = (miu*rw)+ miu + linearBufferLength;
/packages/apps/Nfc/nci/jni/
H A DNativeNfcManager.cpp1122 ** linearBufferLength: Max buffer size.
1127 static jobject nfcManager_doCreateLlcpServiceSocket (JNIEnv* e, jobject, jint nSap, jstring sn, jint miu, jint rw, jint linearBufferLength) argument
1133 ALOGD ("%s: enter: sap=%i; name=%s; miu=%i; rw=%i; buffLen=%i", __FUNCTION__, nSap, serviceName.c_str(), miu, rw, linearBufferLength);
1167 e->SetIntField(serviceSocket, f,(jint)linearBufferLength);
1168 ALOGD ("%s: buffer length = %d", __FUNCTION__, linearBufferLength);
1273 ** linearBufferLength: Max buffer size.
1278 static jobject nfcManager_doCreateLlcpSocket (JNIEnv* e, jobject, jint nSap, jint miu, jint rw, jint linearBufferLength) argument
1280 ALOGD ("%s: enter; sap=%d; miu=%d; rw=%d; buffer len=%d", __FUNCTION__, nSap, miu, rw, linearBufferLength);
/packages/apps/Nfc/src/com/android/nfc/
H A DDeviceHost.java196 int rw, int linearBufferLength) throws LlcpException;
199 int linearBufferLength) throws LlcpException;
195 createLlcpServerSocket(int nSap, String sn, int miu, int rw, int linearBufferLength) argument
198 createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
H A DNfcService.java1600 public LlcpSocket createLlcpSocket(int sap, int miu, int rw, int linearBufferLength) argument
1602 return mDeviceHost.createLlcpSocket(sap, miu, rw, linearBufferLength);
1617 int linearBufferLength) throws LlcpException {
1618 return mDeviceHost.createLlcpServerSocket(sap, sn, miu, rw, linearBufferLength);
1616 createLlcpServerSocket(int sap, String sn, int miu, int rw, int linearBufferLength) argument

Completed in 56 milliseconds