Home | History | Annotate | Download | only in db

Lines Matching defs:CONFIGS

205 	private static String[] CONFIGS;
376 CONFIGS = null;
497 return CONFIGS[id];
506 if (CONFIGS == null) return EMPTY_LIST;
507 int length = CONFIGS.length;
508 String[] configs = new String[length];
509 System.arraycopy(CONFIGS, 0, configs, 0, length);
510 return configs;
516 public static void setConfigs(String[] configs) {
517 CONFIGS = configs;
527 if (CONFIGS == null) return null;
528 int length = CONFIGS.length;
535 if (configDescriptors[j][0].equals(CONFIGS[i])) {
542 String kind = CONFIGS
543 CONFIG_DESCRIPTIONS[i] = kind+" perf test box "+CONFIGS[i].substring(5);
942 if (CONFIGS == null) return -1;
943 return Arrays.binarySearch(CONFIGS, config);
1003 CONFIGS = null;
1225 if (CONFIGS== null) {
1226 CONFIGS= new String[1];
1227 CONFIGS[0] = config;
1230 int idx = Arrays.binarySearch(CONFIGS, config);
1232 int length = CONFIGS.length;
1233 System.arraycopy(CONFIGS, 0, CONFIGS = new String[length+1], 0, length);
1234 CONFIGS[length] = config;
1235 Arrays.sort(CONFIGS);