diff options
author | Evan Chu <evanchu@broadcom.com> | 2012-08-10 17:42:09 -0400 |
---|---|---|
committer | Martijn Coenen <maco@google.com> | 2012-08-10 17:10:54 -0700 |
commit | 5c7b8d9beeb46cba30bffaf94945ef6fc55e8a76 (patch) | |
tree | 3c76b20ac377751f07ee445e7cce75f1cc194b96 /nci/jni/DataQueue.h | |
parent | c6cdbf21958178025010c6bed797ff193c89884f (diff) | |
download | packages_apps_nfc-5c7b8d9beeb46cba30bffaf94945ef6fc55e8a76.zip packages_apps_nfc-5c7b8d9beeb46cba30bffaf94945ef6fc55e8a76.tar.gz packages_apps_nfc-5c7b8d9beeb46cba30bffaf94945ef6fc55e8a76.tar.bz2 |
Remove whitespace from NFC NCI JNI.
- Logging changes
- Upgrade to stack NFA_MI_1.03.33
Change-Id: Iba2af1af49a261de50f79572b478838e2bdc890f
Diffstat (limited to 'nci/jni/DataQueue.h')
-rw-r--r-- | nci/jni/DataQueue.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/nci/jni/DataQueue.h b/nci/jni/DataQueue.h index 4c0c454..4bb6bda 100644 --- a/nci/jni/DataQueue.h +++ b/nci/jni/DataQueue.h @@ -8,7 +8,7 @@ ** Proprietary and confidential. ** *****************************************************************************/ - + #pragma once #include "NfcJniUtil.h" #include "gki.h" @@ -21,10 +21,10 @@ class DataQueue public: /******************************************************************************* ** - ** Function: DataQueue + ** Function: DataQueue + ** + ** Description: Initialize member variables. ** - ** Description: Initialize member variables. - ** ** Returns: None. ** *******************************************************************************/ @@ -33,10 +33,10 @@ public: /******************************************************************************* ** - ** Function: ~DataQueue + ** Function: ~DataQueue + ** + ** Description: Release all resources. ** - ** Description: Release all resources. - ** ** Returns: None. ** *******************************************************************************/ @@ -45,12 +45,12 @@ public: /******************************************************************************* ** - ** Function: enqueue + ** Function: enqueue ** ** Description: Append data to the queue. ** data: array of bytes ** dataLen: length of the data. - ** + ** ** Returns: True if ok. ** *******************************************************************************/ @@ -59,13 +59,13 @@ public: /******************************************************************************* ** - ** Function: dequeue + ** Function: dequeue ** ** Description: Retrieve and remove data from the front of the queue. ** buffer: array to store the data. ** bufferMaxLen: maximum size of the buffer. ** actualLen: actual length of the data. - ** + ** ** Returns: True if ok. ** *******************************************************************************/ @@ -74,15 +74,15 @@ public: /******************************************************************************* ** - ** Function: isEmpty + ** Function: isEmpty ** ** Description: Whether the queue is empty. - ** + ** ** Returns: True if empty. ** *******************************************************************************/ bool isEmpty(); - + private: struct tHeader { |