Home | History | Annotate | Download | only in am

Lines Matching defs:dos

11509         DataOutputStream dos = null;
11512 dos = new DataOutputStream(new BufferedOutputStream(fos, 2048));
11513 dos.writeInt(LAST_PREBOOT_DELIVERED_FILE_VERSION);
11514 dos.writeUTF(android.os.Build.VERSION.RELEASE);
11515 dos.writeUTF(android.os.Build.VERSION.CODENAME);
11516 dos.writeUTF(android.os.Build.VERSION.INCREMENTAL);
11517 dos.writeInt(list.size());
11519 dos.writeUTF(list.get(i).getPackageName());
11520 dos.writeUTF(list.get(i).getClassName());
11527 if (dos != null) {
11529 dos.close();