Searched defs:pickle_file (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_pickle.h38 * 'pickle_file' is the base class. Classes that inherit this base
50 class pickle_file { class
59 /* Constructor. Creates pickle_file with given name and mode. */
60 pickle_file(char *, pickle_mode);
62 ~pickle_file() { delete filename; DESTROYRW(pickle); }
65 * Opens pickle_file with mode specified with constructor.
70 /* Closes pickle_file. Returns 0 if successful; -1 otherwise. */
75 * dump/load is determined by 'mode' with which pickle_file was created.
H A Ddb_pickle.cc40 /* Constructor. Creates pickle_file with given name and mode. */
41 pickle_file::pickle_file(char* f, pickle_mode m) function in class:pickle_file
44 FATAL("pickle_file::pickle_file: cannot allocate space",
54 * Opens pickle_file with mode specified with constructor.
58 pickle_file::open()
60 WRITELOCK(this, FALSE, "w pickle_file::open");
77 WRITEUNLOCK(this, FALSE, "wu pickle_file::open");
80 WRITEUNLOCK(this, FALSE, "wu pickle_file
[all...]

Completed in 68 milliseconds