Searched defs:buf (Results 51 - 63 of 63) sorted by relevance

123

/packages/apps/Nfc/nci/jni/
H A DNativeNfcTag.cpp244 jbyteArray buf = NULL; local
266 buf = e->NewByteArray (sReadDataLen);
267 e->SetByteArrayRegion (buf, 0, sReadDataLen, (jbyte*) sReadData);
275 buf = e->NewByteArray (sReadDataLen);
276 e->SetByteArrayRegion (buf, 0, sReadDataLen, (jbyte*) sReadData);
287 return buf;
338 ** buf: Contains a NDEF message.
343 static jboolean nativeNfcTag_doWrite (JNIEnv* e, jobject, jbyteArray buf) argument
351 ScopedByteArrayRO bytes(e, buf);
765 ** buf
771 nativeNfcTag_doTransceiveStatus(tNFA_STATUS status, uint8_t* buf, uint32_t bufLen) argument
840 uint8_t* buf = const_cast<uint8_t*>(reinterpret_cast<const uint8_t*>(&bytes[0])); // TODO: API bug; NFA_SendRawFrame should take const*! local
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLES11Canvas.java964 public int uploadBuffer(FloatBuffer buf) { argument
965 return uploadBuffer(buf, Float.SIZE / Byte.SIZE);
969 public int uploadBuffer(ByteBuffer buf) { argument
970 return uploadBuffer(buf, 1);
973 private int uploadBuffer(Buffer buf, int elementSize) { argument
978 mGL.glBufferData(GL11.GL_ARRAY_BUFFER, buf.capacity() * elementSize, buf,
H A DGLES20Canvas.java942 public int uploadBuffer(FloatBuffer buf) { argument
943 return uploadBuffer(buf, FLOAT_SIZE);
947 public int uploadBuffer(ByteBuffer buf) { argument
948 return uploadBuffer(buf, 1);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java942 public int uploadBuffer(FloatBuffer buf) { argument
943 return uploadBuffer(buf, FLOAT_SIZE);
947 public int uploadBuffer(ByteBuffer buf) { argument
948 return uploadBuffer(buf, 1);
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native_async/src/
H A DdmtAsyncAPI.cc247 pMessage->pMsg->buf.getBuffer(),
248 pMessage->pMsg->buf.getSize(),
278 pMessage->pMsg->buf.getBuffer(),
279 pMessage->pMsg->buf.getSize(),
308 pMessage->pMsg->buf.getBuffer(),
309 pMessage->pMsg->buf.getSize(),
1109 const UINT8 * buf,
1117 if ( szPrincipal == 0 || buf == NULL || len == 0 )
1131 status = message.pMsg->set(szPrincipal, buf, len, isWBXML, callback,messageID,(UINT32)pUserData);
1186 const UINT8 * buf,
1108 dmtProcessScript_Post(CPCHAR szPrincipal, const UINT8 * buf, INT32 len, BOOLEAN isWBXML, DMT_CallbackProcessScript callback, void* pUserData, UINT32 messageID ) argument
1185 dmtBootstrap_Post(CPCHAR szPrincipal, const UINT8 * buf, INT32 len, BOOLEAN isWBXML, BOOLEAN isProcess, DMT_CallbackBootstrap callback, void* pUserData, UINT32 messageID ) argument
1225 dmtProcessNotification_Post(CPCHAR szPrincipal, const UINT8 *buf, INT32 len, DMT_CallbackProcessNotification callback, void* pUserData, UINT32 messageID ) argument
1877 DMT_ProcessScript(CPCHAR szPrincipal, const UINT8 * buf, INT32 len, BOOLEAN isWBXML, DMT_CallbackProcessScript callback, void* pUserData ) argument
1904 DMT_Bootstrap(CPCHAR szPrincipal, const UINT8 * buf, INT32 len, BOOLEAN isWBXML, BOOLEAN isProcess, DMT_CallbackBootstrap callback, void* pUserData ) argument
1919 DMT_ProcessNotification(CPCHAR szPrincipal, const UINT8 *buf, INT32 len, DMT_CallbackProcessNotification callback, void* pUserData ) argument
2316 DMT_ProcessScript_Msg(CPCHAR szPrincipal, const UINT8 * buf, INT32 len, BOOLEAN isWBXML, UINT32 messageID, void* pUserData ) argument
2345 DMT_ProcessNotification_Msg(CPCHAR szPrincipal, const UINT8 *buf, INT32 len, UINT32 messageID, void* pUserData ) argument
2359 DMT_Bootstrap_Msg(CPCHAR szPrincipal, const UINT8 * buf, INT32 len, BOOLEAN isWBXML, BOOLEAN isProcess, UINT32 messageID, void* pUserData ) argument
[all...]
/packages/apps/OMA-DM/engine/dmlib/linux_java/samples/unittest/src/
H A Ddmt_test.cc1062 static void Dump( const char* buf, int size ) argument
1075 pos += sprintf( s+pos, " %02x", (unsigned int)((unsigned char)buf[i]) );
1083 pos += sprintf( s+pos, "%c", (buf[i] > 31 ? buf[i] : '.') );
1087 buf += nLine;
/packages/apps/OMA-DM/engine/dmlib/dmt-tools/lib/
H A Djoda-time-1.1.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ssession/src/
H A DSYNCML_DM_BuildPackage.cc134 ARGUMENT PASSED : buf
139 void SYNCML_DM_BuildPackage::operator delete(void *buf) argument
141 DmFreeMem(buf);
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java1040 ByteBuffer buf = file.getChannel().map(MapMode.READ_WRITE, 0, exifSize);
1044 ret = rewriteExif(buf, tags);
1060 * @param buf a ByteBuffer containing a jpeg file with existing exif tags to
1068 public boolean rewriteExif(ByteBuffer buf, Collection<ExifTag> tags) throws IOException { argument
1071 mod = new ExifModifier(buf, this);
2044 byte[] buf = new byte[1024];
2045 int ret = is.read(buf, 0, 1024);
2047 os.write(buf, 0, ret);
2048 ret = is.read(buf, 0, 1024);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java1040 ByteBuffer buf = file.getChannel().map(MapMode.READ_WRITE, 0, exifSize);
1044 ret = rewriteExif(buf, tags);
1060 * @param buf a ByteBuffer containing a jpeg file with existing exif tags to
1068 public boolean rewriteExif(ByteBuffer buf, Collection<ExifTag> tags) throws IOException { argument
1071 mod = new ExifModifier(buf, this);
2044 byte[] buf = new byte[1024];
2045 int ret = is.read(buf, 0, 1024);
2047 os.write(buf, 0, ret);
2048 ret = is.read(buf, 0, 1024);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifInterface.java1040 ByteBuffer buf = file.getChannel().map(MapMode.READ_WRITE, 0, exifSize);
1044 ret = rewriteExif(buf, tags);
1060 * @param buf a ByteBuffer containing a jpeg file with existing exif tags to
1068 public boolean rewriteExif(ByteBuffer buf, Collection<ExifTag> tags) throws IOException { argument
1071 mod = new ExifModifier(buf, this);
2044 byte[] buf = new byte[1024];
2045 int ret = is.read(buf, 0, 1024);
2047 os.write(buf, 0, ret);
2048 ret = is.read(buf, 0, 1024);
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifInterface.java1040 ByteBuffer buf = file.getChannel().map(MapMode.READ_WRITE, 0, exifSize);
1044 ret = rewriteExif(buf, tags);
1060 * @param buf a ByteBuffer containing a jpeg file with existing exif tags to
1068 public boolean rewriteExif(ByteBuffer buf, Collection<ExifTag> tags) throws IOException { argument
1071 mod = new ExifModifier(buf, this);
2044 byte[] buf = new byte[1024];
2045 int ret = is.read(buf, 0, 1024);
2047 os.write(buf, 0, ret);
2048 ret = is.read(buf, 0, 1024);
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 360 milliseconds

123