Home | History | Annotate | Download | only in db

Lines Matching defs:VMS

234 	 * The list of all the VMs stored in the database.
236 private static String[] VMS;
385 VMS = null;
1285 if (VMS == null) {
1286 VMS = new String[1];
1287 VMS[0] = vm;
1290 int idx = Arrays.binarySearch(VMS, vm);
1292 int length = VMS.length;
1293 System.arraycopy(VMS, 0, VMS = new String[length+1], 0, length);
1294 VMS[length] = vm;
1295 Arrays.sort(VMS);