ndx 465 source3/include/proto.h const char *debug_classname_from_index(int ndx);
ndx 286 source3/lib/debug.c const char *debug_classname_from_index(int ndx)
ndx 288 source3/lib/debug.c if (ndx < 0 || ndx >= debug_num_classes)
ndx 291 source3/lib/debug.c return classname_table[ndx];
ndx 317 source3/lib/debug.c int ndx;
ndx 326 source3/lib/debug.c ndx = debug_lookup_classname_int(classname);
ndx 327 source3/lib/debug.c if (ndx >= 0)
ndx 328 source3/lib/debug.c return ndx;
ndx 329 source3/lib/debug.c ndx = debug_num_classes;
ndx 340 source3/lib/debug.c DEBUGLEVEL_CLASS[ndx] = 0;
ndx 343 source3/lib/debug.c if (ndx==0) {
ndx 345 source3/lib/debug.c DEBUGLEVEL_CLASS[ndx] = DEBUGLEVEL;
ndx 357 source3/lib/debug.c DEBUGLEVEL_CLASS_ISSET[ndx] = False;
ndx 364 source3/lib/debug.c classname_table[ndx] = SMB_STRDUP(classname);
ndx 365 source3/lib/debug.c if (! classname_table[ndx])
ndx 370 source3/lib/debug.c return ndx;
ndx 379 source3/lib/debug.c int ndx;
ndx 384 source3/lib/debug.c ndx = debug_lookup_classname_int(classname);
ndx 386 source3/lib/debug.c if (ndx != -1)
ndx 387 source3/lib/debug.c return ndx;
ndx 424 source3/lib/debug.c int i, ndx;
ndx 447 source3/lib/debug.c ((ndx = debug_lookup_classname(class_name)) != -1)) {
ndx 448 source3/lib/debug.c DEBUGLEVEL_CLASS[ndx] = atoi(class_level);
ndx 449 source3/lib/debug.c DEBUGLEVEL_CLASS_ISSET[ndx] = True;