Lines Matching refs:operation
62 * 5 unable to perform BDB cursor operation
160 DBC *cursor2; /* second cursor used during list operation. */
161 DBC *cursor3; /* third cursor used during list operation */
162 DBC *cursor4; /* fourth cursor used during list operation */
184 * checkOp is used to verify that only one operation (list, del, add,
190 #define checkOp(x) if (x != 0) {fprintf(stderr, "\nonly one operation "\
204 * the operation selected. I.E. passing the key parameter makes no sense
205 * for the add operation, and thus it isn't allowed.
213 * the operation selected - but checks boolean options.
215 * operation, and thus it isn't allowed.
224 int operation = 0; /*%< operation to perform. */
236 char *a_data = NULL; /*%< data in add operation */
244 isc_buffer_t lex_buffer; /*%< buffer for lexer during add operation */
271 Use the -n flag with any operation to allow files to be created.\n\
597 /* perform insert operation */
635 "\"bulk\" operation.\nStoped processing on line %lu.",
767 /*% Perform add operation */
772 checkInvalidParam(key, "k", "for add operation");
773 checkInvalidParam(zone, "z", "for add operation");
774 checkInvalidParam(host, "h", "for add operation");
775 checkInvalidParam(c_zone, "c", "for add operation");
776 checkInvalidParam(c_ip, "i", "for add operation");
778 "for add operation");
798 /*% Perform bulk insert operation */
803 checkInvalidParam(key, "k", "for bulk load operation");
804 checkInvalidParam(zone, "z", "for bulk load operation");
805 checkInvalidParam(host, "h", "for bulk load operation");
806 checkInvalidParam(c_zone, "c", "for bulk load operation");
807 checkInvalidParam(c_ip, "i", "for bulk load operation");
809 "for bulk load operation");
902 * Perform listOrDelete operation
919 checkInvalidParam(zone, "z", "for delete operation");
920 checkInvalidParam(host, "h", "for delete operation");
922 "for delete operation");
924 "for delete operation");
931 "for list operation");
936 "for list operation");
1131 fprintf(stderr, "Unexpected error during list operation " \
1161 checkOp(operation);
1162 operation = list;
1165 checkOp(operation);
1166 operation = dele;
1169 checkOp(operation);
1170 operation = add;
1174 checkOp(operation);
1175 operation = bulk;
1179 checkOp(operation);
1180 operation = bulk;
1207 checkOp(operation);
1208 operation = list;
1250 switch(operation) {
1264 fprintf(stderr, "\nNo operation was selected. "\
1265 "Select an operation (l d a f)");