Lines Matching defs:in
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
118 InputStream in;
123 in = ((HotSpotVirtualMachine)vm).setFlag(flag, value);
129 in = ((HotSpotVirtualMachine)vm).setFlag(flag, "1");
133 in = ((HotSpotVirtualMachine)vm).setFlag(flag, "0");
137 in = ((HotSpotVirtualMachine)vm).printFlag(flag);
142 drain(vm, in);
162 private static void drain(VirtualMachine vm, InputStream in) throws IOException {
167 n = in.read(b);
173 in.close();