Lines Matching refs:optstr

3   if (strcmp ("vfprintf", optstr) == 0)
14 else if (strcmp ("exit", optstr) == 0)
24 else if (strcmp ("abort", optstr) == 0)
36 else if (strncmp ("-Dsablevm.boot.class.path=", optstr, 26) == 0)
44 (vm->class_loading.boot_loader.boot_class_path, &optstr[26]) != JNI_OK)
50 else if (strncmp ("-Dsablevm.boot.class.path.prepend=", optstr, 34) == 0)
58 (vm->class_loading.boot_loader.boot_class_path_prepend, &optstr[34]) != JNI_OK)
64 else if (strncmp ("-Dsablevm.boot.class.path.append=", optstr, 33) == 0)
72 (vm->class_loading.boot_loader.boot_class_path_append, &optstr[33]) != JNI_OK)
78 else if (strncmp ("-Dsablevm.boot.library.path=", optstr, 28) == 0)
86 (vm->class_loading.boot_loader.boot_library_path, &optstr[28]) != JNI_OK)
94 else if (strncmp ("-Dsablevm.structured.locking=", optstr, 29) == 0)
96 const char *value = &optstr[29];
116 else if (strncmp ("-Dsablevm.heap.size=", optstr, 20) == 0)
118 if (_svmf_parse_size_t (&vm->heap.size, &optstr[20]) != JNI_OK)
128 else if (strncmp ("-Dsablevm.heap.size.min=", optstr, 24) == 0)
130 if (_svmf_parse_size_t (&vm->heap.min_size, &optstr[24]) != JNI_OK)
136 else if (strncmp ("-Dsablevm.heap.size.max=", optstr, 24) == 0)
138 if (_svmf_parse_size_t (&vm->heap.max_size, &optstr[24]) != JNI_OK)
144 else if (strncmp ("-Dsablevm.heap.size.increment=", optstr, 30) == 0)
146 if (_svmf_parse_size_t (&vm->heap.allocation_increment, &optstr[30]) != JNI_OK)
156 else if (strncmp ("-Dsablevm.heap.size.nursery=", optstr, 28) == 0)
158 if (_svmf_parse_size_t (&vm->heap.nursery_size, &optstr[28]) != JNI_OK)
169 else if (strncmp ("-Dsablevm.stack.size.min=", optstr, 25) == 0)
171 if (_svmf_parse_size_t (&vm->stack_min_size, &optstr[25]) != JNI_OK)
177 else if (strncmp ("-Dsablevm.stack.size.max=", optstr, 25) == 0)
179 if (_svmf_parse_size_t (&vm->stack_max_size, &optstr[25]) != JNI_OK)
185 else if (strncmp ("-Dsablevm.stack.size.increment=", optstr, 31) == 0)
187 if (_svmf_parse_size_t (&vm->stack_allocation_increment, &optstr[31]) != JNI_OK)
193 else if (strncmp ("-Dsablevm.classloader.heap.size.min=", optstr, 36) == 0)
195 if (_svmf_parse_size_t (&vm->class_loader_min_size, &optstr[36]) != JNI_OK)
201 else if (strncmp ("-Dsablevm.classloader.heap.size.max=", optstr, 36) == 0)
203 if (_svmf_parse_size_t (&vm->class_loader_max_size, &optstr[36]) != JNI_OK)
209 else if (strncmp ("-Dsablevm.classloader.heap.size.increment=", optstr, 42) == 0)
211 if (_svmf_parse_size_t (&vm->class_loader_allocation_increment, &optstr[42]) != JNI_OK)
221 else if (strncmp ("-Dsablevm.verbose.exceptions=", optstr, 29) == 0)
223 const char *value = &optstr[29];
239 else if (strncmp ("-Dsablevm.verbose.exit=", optstr, 23) == 0)
241 const char *value = &optstr[23];
263 else if (strncmp ("-Dsablevm.verbose.methods=", optstr, 26) == 0)
265 const char *value = &optstr[26];
281 else if (strncmp ("-Dsablevm.verbose.instructions=", optstr, 31) == 0)
283 const char *value = &optstr[31];
299 else if (strncmp ("-Dsablevm.verbose.synchronization=", optstr, 34) == 0)
301 const char *value = &optstr[34];
320 else if (strncmp ("-D", optstr, 2) == 0)
326 if (strlen (optstr) < 4 || optstr[2] == '=')
331 first_equal = strchr (&optstr[3], '=');
341 else if (strncmp ("-verbose", optstr, 8) == 0)
343 const char *start = &optstr[8];
402 if (strncmp ("-D", optstr, 2) == 0)
407 &optstr[2]) != JNI_OK)