Searched refs:formatId (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DRecordInput.java96 int formatId = readPackedInt();
100 if (formatId == Format.ID_NULL) {
105 if (formatId < 0) {
106 int offset = (-(formatId + 1));
128 formatId = priKeyFormatId;
131 formatId = useInput.readPackedInt();
151 Format format = catalog.getFormat(formatId);
192 int formatId = input.readPackedInt();
193 if (formatId == Format.ID_NULL) {
197 if (formatId <
[all...]
H A DReadOnlyCatalog.java41 public Format getFormat(int formatId) { argument
43 Format format = formatList.get(formatId);
46 ("Format does not exist: " + formatId);
51 ("Format does not exist: " + formatId);
H A DCatalog.java55 * @throws IllegalStateException if the formatId does not correspond to a
58 Format getFormat(int formatId); argument
H A DPersistEntityBinding.java68 * - The formatId must be >= 0; since this is the top level instance, it
84 int formatId = dataInput.readPackedInt();
85 Format format = catalog.getFormat(formatId);
98 * Writes the formatId and object, and returns the bytes.
H A DPersistKeyCreator.java156 int formatId = input.readPackedInt();
157 Format entityFormat = catalog.getFormat(formatId);
H A DSimpleCatalog.java213 public Format getFormat(int formatId) { argument
216 format = formatList.get(formatId);
219 ("Not a simple type: " + formatId);
224 ("Not a simple type: " + formatId);
H A DPersistCatalog.java97 * A list of all formats indexed by formatId. Element zero is unused and
700 public Format getFormat(int formatId) { argument
702 Format format = formatList.get(formatId);
705 ("Format does not exist: " + formatId);
710 ("Format does not exist: " + formatId);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawObject.java237 formatId(buf, id);
275 formatId(buf, id);
282 formatId(buf, id);
291 private static void formatId(StringBuffer buf, String id) { method in class:RawObject

Completed in 78 milliseconds