Searched refs:stream (Results 1 - 2 of 2) sorted by relevance

/dalvik/libdex/
H A DDexDebugInfo.cpp135 ALOGE("Invalid debug info stream. class %s; proto %s",
149 const u1* stream,
154 u4 line = readUnsignedLeb128(&stream);
155 u4 parametersSize = readUnsignedLeb128(&stream);
189 name = readStringIdx(pDexFile, &stream);
212 u1 opcode = *stream++;
220 address += readUnsignedLeb128(&stream);
224 line += readSignedLeb128(&stream);
229 reg = readUnsignedLeb128(&stream);
239 localInReg[reg].name = readStringIdx(pDexFile, &stream);
141 dexDecodeDebugInfo0( const DexFile* pDexFile, const DexCode* pCode, const char* classDescriptor, u4 protoIdx, u4 accessFlags, DexDebugNewPositionCb posCb, DexDebugNewLocalCb localCb, void* cnxt, const u1* stream, LocalInfo* localInReg) argument
321 const u1* stream = dexGetDebugInfoStream(pDexFile, pCode); local
[all...]
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java944 * Flushes and closes the given output stream, except if it happens to be
949 * @param stream {@code null-ok;} what to close
951 private static void closeOutput(OutputStream stream) throws IOException { argument
952 if (stream == null) {
956 stream.flush();
958 if (stream != System.out) {
959 stream.close();

Completed in 54 milliseconds