Lines Matching defs:operation
53 * 5 unable to perform BDB cursor operation
151 DBC *cursor2; /* second cursor used during list operation. */
152 DBC *cursor3; /* third cursor used during list operation */
153 DBC *cursor4; /* fourth cursor used during list operation */
175 * checkOp is used to verify that only one operation (list, del, add,
181 #define checkOp(x) if (x != 0) {fprintf(stderr, "\nonly one operation "\
195 * the operation selected. I.E. passing the key parameter makes no sense
196 * for the add operation, and thus it isn't allowed.
204 * the operation selected - but checks boolean options.
206 * operation, and thus it isn't allowed.
215 int operation = 0; /*%< operation to perform. */
227 char *a_data = NULL; /*%< data in add operation */
235 isc_buffer_t lex_buffer; /*%< buffer for lexer during add operation */
262 Use the -n flag with any operation to allow files to be created.\n\
588 /* perform insert operation */
626 "\"bulk\" operation.\nStoped processing on line %lu.",
758 /*% Perform add operation */
763 checkInvalidParam(key, "k", "for add operation");
764 checkInvalidParam(zone, "z", "for add operation");
765 checkInvalidParam(host, "h", "for add operation");
766 checkInvalidParam(c_zone, "c", "for add operation");
767 checkInvalidParam(c_ip, "i", "for add operation");
769 "for add operation");
789 /*% Perform bulk insert operation */
794 checkInvalidParam(key, "k", "for bulk load operation");
795 checkInvalidParam(zone, "z", "for bulk load operation");
796 checkInvalidParam(host, "h", "for bulk load operation");
797 checkInvalidParam(c_zone, "c", "for bulk load operation");
798 checkInvalidParam(c_ip, "i", "for bulk load operation");
800 "for bulk load operation");
893 * Perform listOrDelete operation
910 checkInvalidParam(zone, "z", "for delete operation");
911 checkInvalidParam(host, "h", "for delete operation");
913 "for delete operation");
915 "for delete operation");
922 "for list operation");
927 "for list operation");
1122 fprintf(stderr, "Unexpected error during list operation " \
1152 checkOp(operation);
1153 operation = list;
1156 checkOp(operation);
1157 operation = dele;
1160 checkOp(operation);
1161 operation = add;
1165 checkOp(operation);
1166 operation = bulk;
1170 checkOp(operation);
1171 operation = bulk;
1198 checkOp(operation);
1199 operation = list;
1241 switch(operation) {
1255 fprintf(stderr, "\nNo operation was selected. "\
1256 "Select an operation (l d a f)");