Searched refs:dis (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DMaterial.java75 public void load(DataInputStream dis) throws IOException { argument
76 dis.readInt(); // name length
77 this.name = dis.readUTF();
79 dis.readInt(); // map_kdLength
80 this.map_kd = dis.readUTF();
86 this.ka[0] = dis.readFloat();
87 this.ka[1] = dis.readFloat();
88 this.ka[2] = dis.readFloat();
89 this.ka[3] = dis.readFloat();
91 this.kd[0] = dis
[all...]
H A DObject3D.java146 private static void verifyByte(DataInputStream dis, int b) argument
148 int x = dis.read() & 0xff;
159 DataInputStream dis = new DataInputStream(readFile(filename));
160 verifyByte(dis, 'g' + 128);
161 verifyByte(dis, 'l');
162 verifyByte(dis, 'e');
163 verifyByte(dis, 's');
165 int numTuples = dis.readInt();
167 this.mBoundsMinX = dis.readFloat();
168 this.mBoundsMaxX = dis
[all...]
H A DGroup.java67 public void load(DataInputStream dis) throws IOException { argument
68 dis.readInt(); // name length
69 this.name = dis.readUTF();
71 int numMaterials = dis.readInt();
74 dis.readInt(); // material name length
75 String matName = dis.readUTF();
78 int numIndices = dis.readInt();
80 dis.readFully(indicesBytes);
/frameworks/base/core/java/android/webkit/
H A DViewStateSerializer.java53 DataInputStream dis = new DataInputStream(stream);
54 int version = dis.readInt();
58 int contentWidth = dis.readInt();
59 int contentHeight = dis.readInt();
60 int baseLayer = nativeDeserializeViewState(dis,
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DAdbUtils.java60 DataInputStream dis = new DataInputStream(localSocket.getInputStream());
64 if (localSocket == null || dis == null || os == null)
68 if(!sendAdbCmd(dis, os, cmd))
71 count_read = dis.readInt();
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java480 DataInputStream dis = new DataInputStream(bais);
487 env.messageType = dis.readInt();
488 env.teleService = dis.readInt();
489 env.serviceCategory = dis.readInt();
491 addr.digitMode = dis.readByte();
492 addr.numberMode = dis.readByte();
493 addr.ton = dis.readByte();
494 addr.numberPlan = dis.readByte();
496 length = dis.readByte();
499 dis
[all...]
/frameworks/base/services/java/com/android/server/location/
H A DGpsXtraDownloader.java143 DataInputStream dis = new DataInputStream(entity.getContent());
145 dis.readFully(body);
148 dis.close();
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRIL.java1181 DataInputStream dis = new DataInputStream(bais);
1187 rr.mp.writeInt(dis.readInt()); //teleServiceId
1188 rr.mp.writeByte((byte) dis.readInt()); //servicePresent
1189 rr.mp.writeInt(dis.readInt()); //serviceCategory
1190 rr.mp.writeInt(dis.read()); //address_digit_mode
1191 rr.mp.writeInt(dis.read()); //address_nbr_mode
1192 rr.mp.writeInt(dis.read()); //address_ton
1193 rr.mp.writeInt(dis.read()); //address_nbr_plan
1194 address_nbr_of_digits = (byte) dis.read();
1197 rr.mp.writeByte(dis
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java411 PackageSetting dis = mDisabledSysPackages.get(name);
412 if (dis != null) {
417 if (dis.signatures.mSignatures != null) {
418 p.signatures.mSignatures = dis.signatures.mSignatures.clone();
420 p.userId = dis.userId;
422 p.grantedPermissions = new HashSet<String>(dis.grantedPermissions);
424 p.disabledComponents = new HashSet<String>(dis.disabledComponents);
425 p.enabledComponents = new HashSet<String>(dis.enabledComponents);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java6836 DataInputStream dis = new DataInputStream(new BufferedInputStream(fis, 2048));
6837 int fvers = dis.readInt();
6839 String vers = dis.readUTF();
6840 String codename = dis.readUTF();
6841 String build = dis.readUTF();
6845 int num = dis.readInt();
6848 String pkg = dis.readUTF();
6849 String cls = dis.readUTF();

Completed in 223 milliseconds