Home
last modified time | relevance | path

Searched refs:gf (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DInet6Address.java630 ObjectInputStream.GetField gf = s.readFields(); in readObject() local
631 byte[] ipaddress = (byte[])gf.get("ipaddress", null); in readObject()
632 int scope_id = (int)gf.get("scope_id", -1); in readObject()
633 boolean scope_id_set = (boolean)gf.get("scope_id_set", false); in readObject()
634 boolean scope_ifname_set = (boolean)gf.get("scope_ifname_set", false); in readObject()
635 String ifname = (String)gf.get("ifname", null); in readObject()
DInetAddress.java1570 GetField gf = s.readFields(); in readObject() local
1571 String host = (String)gf.get("hostName", null); in readObject()
1572 int address= gf.get("address", 0); in readObject()
1573 int family= gf.get("family", 0); in readObject()
DURL.java1359 GetField gf = s.readFields(); in readObject() local
1360 String protocol = (String)gf.get("protocol", null); in readObject()
1364 String host = (String)gf.get("host", null); in readObject()
1365 int port = gf.get("port", -1); in readObject()
1366 String authority = (String)gf.get("authority", null); in readObject()
1367 String file = (String)gf.get("file", null); in readObject()
1368 String ref = (String)gf.get("ref", null); in readObject()
/libcore/ojluni/src/main/java/javax/security/auth/
DSubject.java966 ObjectInputStream.GetField gf = s.readFields();
968 readOnly = gf.get("readOnly", false);
970 Set<Principal> inputPrincs = (Set<Principal>)gf.get("principals", null);