Searched refs:u1 (Results 1 - 25 of 118) sorted by relevance

12345

/dalvik/vm/mterp/c/
H A DOP_AGET_BOOLEAN.cpp1 HANDLE_OP_AGET(OP_AGET_BOOLEAN, "-boolean", u1, )
H A DOP_APUT_BOOLEAN.cpp1 HANDLE_OP_APUT(OP_APUT_BOOLEAN, "-boolean", u1, )
H A DOP_BREAKPOINT.cpp18 u1 originalOpcode = dvmGetOriginalOpcode(pc);
/dalvik/vm/jdwp/
H A DJdwpEvent.h29 u1 modKind; /* JdwpModKind */
31 u1 modKind;
35 u1 modKind;
39 u1 modKind;
43 u1 modKind;
47 u1 modKind;
51 u1 modKind;
55 u1 modKind;
59 u1 modKind;
60 u1 caugh
[all...]
H A DJdwpHandler.h31 u1 cmdSet;
32 u1 cmd;
42 const u1* buf, int dataLen, ExpandBuf* pReply);
H A DExpandBuf.h22 #include "Common.h" // need u1/u2/u4/u8 types
35 u1* expandBufGetBuffer(ExpandBuf* pBuf);
49 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize);
50 void expandBufAdd1(ExpandBuf* pBuf, u1 val);
54 void expandBufAddUtf8String(ExpandBuf* pBuf, const u1* str);
H A DExpandBuf.cpp31 u1* storage;
46 newBuf->storage = (u1*) malloc(kInitialStorage);
68 u1* expandBufGetBuffer(ExpandBuf* pBuf)
88 u1* newPtr;
96 newPtr = (u1*) realloc(pBuf->storage, pBuf->maxLen);
108 u1* expandBufAddSpace(ExpandBuf* pBuf, int gapSize)
110 u1* gapStart;
123 void expandBufAdd1(ExpandBuf* pBuf, u1 val)
168 void expandBufAddUtf8String(ExpandBuf* pBuf, const u1* str)
H A DJdwp.h50 INLINE FieldId dvmReadFieldId(const u1** pBuf) { return read4BE(pBuf); }
51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
52 INLINE ObjectId dvmReadObjectId(const u1** pBuf) { return read8BE(pBuf); }
53 INLINE RefTypeId dvmReadRefTypeId(const u1** pBuf) { return read8BE(pBuf); }
54 INLINE FrameId dvmReadFrameId(const u1** pBuf) { return read8BE(pBuf); }
55 INLINE void dvmSetFieldId(u1* buf, FieldId val) { return set4BE(buf, val); }
56 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); }
57 INLINE void dvmSetObjectId(u1* buf, ObjectId val) { return set8BE(buf, val); }
58 INLINE void dvmSetRefTypeId(u1* buf, RefTypeId val) { return set8BE(buf, val); }
59 INLINE void dvmSetFrameId(u1* bu
[all...]
H A DJdwpHandler.cpp44 static void jdwpReadLocation(const u1** pBuf, JdwpLocation* pLoc)
67 static u8 jdwpReadValue(const u1** pBuf, int width)
103 const u1* buf, int dataLen, ExpandBuf* pReply,
123 u1 typeTag = read1(&buf);
137 u1 resultTag;
184 static JdwpError handleVM_Version(JdwpState* state, const u1* buf,
192 expandBufAddUtf8String(pReply, (const u1*) tmpBuf);
197 expandBufAddUtf8String(pReply, (const u1*) "1.5.0"); /* e.g. 1.5.0_04 */
199 expandBufAddUtf8String(pReply, (const u1*) "DalvikVM");
210 const u1* bu
[all...]
/dalvik/libdex/
H A DLeb128.cpp32 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit,
34 const u1* ptr = *pStream;
54 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit,
56 const u1* ptr = *pStream;
H A DDexOptData.h34 bool dexParseOptData(const u1* data, size_t length, DexFile* pDexFile);
H A DDexClass.h62 bool dexReadAndVerifyClassDataHeader(const u1** pData, const u1* pLimit,
76 bool dexReadAndVerifyClassDataField(const u1** pData, const u1* pLimit,
90 bool dexReadAndVerifyClassDataMethod(const u1** pData, const u1* pLimit,
103 DexClassData* dexReadAndVerifyClassData(const u1** pData, const u1* pLimit);
121 DEX_INLINE void dexReadClassDataHeader(const u1** pData,
136 DEX_INLINE void dexReadClassDataField(const u1** pDat
[all...]
H A DDexOptData.cpp39 const u1* start = (const u1*) pOptHeader + pOptHeader->depsOffset;
40 const u1* end = (const u1*) pOptHeader +
49 bool dexParseOptData(const u1* data, size_t length, DexFile* pDexFile)
54 u4 optLength = (const u1*) pOptEnd - (const u1*) pOptStart;
87 ((const u1*) pOpt) - data);
92 const u1* pOptData = (const u1*) (pOp
[all...]
H A DLeb128.h31 DEX_INLINE int readUnsignedLeb128(const u1** pStream) {
32 const u1* ptr = *pStream;
66 DEX_INLINE int readSignedLeb128(const u1** pStream) {
67 const u1* ptr = *pStream;
113 int readAndVerifyUnsignedLeb128(const u1** pStream, const u1* limit,
125 int readAndVerifySignedLeb128(const u1** pStream, const u1* limit, bool* okay);
133 DEX_INLINE u1* writeUnsignedLeb128(u1* pt
[all...]
H A DDexCatch.cpp31 const u1* baseData = dexGetCatchHandlerData(pCode);
32 const u1* data = baseData;
45 const u1* data = dexGetCatchHandlerData(pCode);
H A DDexClass.cpp28 static bool verifyUlebs(const u1* pData, const u1* pLimit, u4 count) {
42 bool dexReadAndVerifyClassDataHeader(const u1** pData, const u1* pLimit,
63 bool dexReadAndVerifyClassDataField(const u1** pData, const u1* pLimit,
84 bool dexReadAndVerifyClassDataMethod(const u1** pData, const u1* pLimit,
104 DexClassData* dexReadAndVerifyClassData(const u1** pData, const u1* pLimi
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DCodeOutput.java31 public void write(short u0, short u1); argument
36 public void write(short u0, short u1, short u2); argument
41 public void write(short u0, short u1, short u2, short u3); argument
46 public void write(short u0, short u1, short u2, short u3, short u4); argument
H A DShortArrayCodeOutput.java63 public void write(short u0, short u1) { argument
65 write(u1);
69 public void write(short u0, short u1, short u2) { argument
71 write(u1);
76 public void write(short u0, short u1, short u2, short u3) { argument
78 write(u1);
84 public void write(short u0, short u1, short u2, short u3, short u4) { argument
86 write(u1);
/dalvik/vm/alloc/
H A DCardTable.h51 u1 *dvmCardFromAddr(const void *addr);
56 void *dvmAddrFromCard(const u1 *card);
61 bool dvmIsValidCard(const u1 *card);
/dalvik/vm/
H A DBits.h33 INLINE u1 get1(unsigned const char* pSrc)
117 INLINE u1 read1(unsigned const char** ppSrc)
272 INLINE void set1(u1* buf, u1 val)
274 *buf = (u1)(val);
280 INLINE void set2BE(u1* buf, u2 val)
282 *buf++ = (u1)(val >> 8);
283 *buf = (u1)(val);
289 INLINE void set4BE(u1* buf, u4 val)
291 *buf++ = (u1)(va
[all...]
H A DDdm.h28 bool dvmDdmHandlePacket(const u1* buf, int dataLen, u1** pReplyBuf,
H A DAllocTracker.h54 bool dvmGenerateTrackedAllocationReport(u1** pData, size_t* pDataLen);
H A DProfile.cpp55 * u1 thread ID
149 static inline void storeShortLE(u1* buf, u2 val)
151 *buf++ = (u1) val;
152 *buf++ = (u1) (val >> 8);
154 static inline void storeIntLE(u1* buf, u4 val)
156 *buf++ = (u1) val;
157 *buf++ = (u1) (val >> 8);
158 *buf++ = (u1) (val >> 16);
159 *buf++ = (u1) (val >> 24);
161 static inline void storeLongLE(u1* bu
[all...]
/dalvik/vm/analysis/
H A DRegisterMap.h55 u1 format; /* enum RegisterMapFormat; MUST be first entry */
56 u1 regWidth; /* bytes per register line, 1+ */
57 u1 numEntries[2]; /* number of entries */
60 u1 data[1];
92 INLINE u1 dvmRegisterMapGetRegWidth(const RegisterMap* pMap) {
124 pMap->numEntries[0] = (u1) numEntries;
137 const u1* dvmRegisterMapGetLine(const RegisterMap* pMap, int addr);
148 INLINE void dvmReleaseRegisterMapLine(const RegisterMap* pMap, const u1* data)
H A DRegisterMap.cpp42 static void outputTypeVector(const RegType* regs, int insnRegCount, u1* data);
194 u1 regWidth;
195 u1* mapData;
274 assert(mapData - (const u1*) pMap == bufSize);
373 static void outputTypeVector(const RegType* regs, int insnRegCount, u1* data)
375 u1 val = 0;
401 const u1* rawMap = pMap->data;
432 const u1* dataStart = rawMap;
433 u1 val = 0;
468 const u1* rawMa
[all...]

Completed in 228 milliseconds

12345