Searched refs:data (Results 26 - 30 of 30) sorted by relevance

12

/dalvik/libdex/
H A Dsha1.cpp25 void SHA1Update(SHA1_CTX* context, unsigned char* data,
28 void SHA1Update(SHA1_CTX* context, unsigned char* data,
78 #define SHA1HANDSOFF /*Copies data before messing with it.*/
213 /* Run your data through this. */
215 void SHA1Update(SHA1_CTX* context, const unsigned char* data, argument
226 memcpy(&context->buffer[j], data, (i = 64-j));
229 SHA1Transform(context->state, &data[i]);
235 memcpy(&context->buffer[j], &data[i], len - i);
H A DDexFile.h188 /* auxillary data section chunk codes */
249 u4 offset; /* file offset to the start of data */
357 u2 handlerOff; /* offset in encoded handler data to handlers */
435 u1 annotation[1]; /* data in encoded_annotation format */
444 u1 array[1]; /* data in encoded_array format */
481 u4 optOffset; /* file offset of optimized data tables */
521 /* points to start of DEX file data */
527 /* additional app-specific data structures associated with the DEX */
541 DexFile* dexFileParse(const u1* data, size_t length, int flags);
597 * Set up the basic raw data pointer
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DInstructionCodec.java733 Object data = payload.getData();
740 case 1: out.write((byte[]) data); break;
741 case 2: out.write((short[]) data); break;
742 case 4: out.write((int[]) data); break;
743 case 8: out.write((long[]) data); break;
/dalvik/tools/hprof-conv/
H A DHprofConv.c18 * Strip Android-specific records out of hprof data, back-converting from
20 * Android hprof data to be handled by widely-available tools (like "jhat").
142 * Return a pointer to the data buffer.
144 * The pointer may change as data is added to the buffer, so this value
153 * Get the amount of data currently in the buffer.
192 * Add data to the buffer after ensuring it can hold it.
194 static int ebAddData(ExpandBuf* pBuf, const void* data, size_t count) argument
197 memcpy(pBuf->storage + pBuf->curLen, data, count);
225 * Read some data, adding it to the expanding buffer.
227 * This will ensure that the buffer has enough space to hold the new data
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 223 milliseconds

12