• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/

Lines Matching refs:formatList

59      * version the formatList record is stored under this key and is converted
91 List<Format> formatList;
105 private volatile List<Format> formatList;
108 * A map of the current/live formats in formatList, indexed by class name.
110 * <p>This field, like formatList, is volatile because it is reassigned
116 * A map of the latest formats (includes deleted formats) in formatList,
214 formatList = catalogData.formatList;
215 if (formatList == null) {
216 formatList = SimpleCatalog.copyFormatList();
224 formatList.set(Format.ID_OBJECT, format);
227 formatList.set(Format.ID_NUMBER, format);
229 if (SimpleCatalog.copyMissingFormats(formatList)) {
237 for (Format format : formatList) {
242 for (Format format : formatList) {
253 formatMap = new HashMap<String,Format>(formatList.size());
254 latestFormatMap = new HashMap<String,Format>(formatList.size());
256 for (Format format : formatList) {
267 for (Format format : formatList) {
292 Format simpleFormat = formatList.get(i);
313 for (Format oldFormat : formatList) {
350 for (Format oldFormat : formatList) {
375 for (Format format : formatList) {
411 catalogData.formatList = formatList;
473 for (Format format : formatList) {
622 addFormat(format, formatList, formatMap);
665 if (catalogData == null || catalogData.formatList == null ||
666 format.getId() >= catalogData.formatList.size()) {
702 Format format = formatList.get(formatId);
781 List<Format> newFormatList = new ArrayList<Format>(formatList);
813 catalogData.formatList = newFormatList;
819 formatList = newFormatList;
835 catalogData.formatList = formatList;
867 catalogData.formatList = (List) object;
940 for (Format format : formatList) {