Searched refs:primValues (Results 1 – 1 of 1) sorted by relevance
2042 return (Object) ctrMH.invokeExact(fieldValues.primValues, fieldValues.objValues); in readRecord()2269 final byte[] primValues; field in ObjectInputStream.FieldValues2286 primValues = (primDataSize > 0) ? new byte[primDataSize] : null; in FieldValues()2288 bin.readFully(primValues, 0, primDataSize, false); in FieldValues()2323 return (off >= 0) ? Bits.getBoolean(primValues, off) : val; in get()2328 return (off >= 0) ? primValues[off] : val; in get()2333 return (off >= 0) ? Bits.getChar(primValues, off) : val; in get()2338 return (off >= 0) ? Bits.getShort(primValues, off) : val; in get()2343 return (off >= 0) ? Bits.getInt(primValues, off) : val; in get()2348 return (off >= 0) ? Bits.getFloat(primValues, off) : val; in get()[all …]