Home | History | Annotate | Download | only in kernel

Lines Matching refs:data

26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
36 * Encapsulates a received piece of data. This is used by the Kernel
37 * to track incoming chunks of data.
45 private byte[] data;
49 * Creates an incoming envelope holding the data from the specified
51 * transport the data arrrived.
53 public Envelope( Endpoint source, byte[] data, boolean reliable )
56 this.data = data;
67 return data;
77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";