Lines Matching refs:opt
619 * Returns B_TRUE if opt is a recognized compile flag, B_FALSE otherwise.
622 dtj_cflag(dtj_java_consumer_t *jc, const char *opt, boolean_t *get,
629 if (strcmp(opt, "argref") == 0) {
631 } else if (strcmp(opt, "cpp") == 0) {
633 } else if (strcmp(opt, "defaultargs") == 0) {
635 } else if (strcmp(opt, "empty") == 0) {
637 } else if (strcmp(opt, "errtags") == 0) {
639 } else if (strcmp(opt, "knodefs") == 0) {
641 } else if (strcmp(opt, "nolibs") == 0) {
643 } else if (strcmp(opt, "pspec") == 0) {
645 } else if (strcmp(opt, "unodefs") == 0) {
647 } else if (strcmp(opt, "verbose") == 0) {
649 } else if (strcmp(opt, "zdefs") == 0) {
659 opt);
927 const char *opt;
935 opt = (*env)->GetStringUTFChars(env, option, 0);
936 if (!opt) {
947 (*env)->ReleaseStringUTFChars(env, option, opt);
965 if (dtj_cflag(&jc, opt, NULL, &on)) {
966 (*env)->ReleaseStringUTFChars(env, option, opt);
988 request = dtj_request_create(env, DTJ_REQUEST_OPTION, opt, val);
1000 if (dtrace_setopt(dtp, opt, val) == -1) {
1006 (*env)->ReleaseStringUTFChars(env, option, opt);
1021 const char *opt;
1030 opt = (*env)->GetStringUTFChars(env, option, 0);
1031 if (!opt) {
1041 if (dtj_cflag(&jc, opt, &cflag, NULL)) {
1042 (*env)->ReleaseStringUTFChars(env, option, opt);
1046 if (dtrace_getopt(dtp, opt, &optval) == -1) {
1048 "couldn't get option %s: %s", opt,
1050 (*env)->ReleaseStringUTFChars(env, option, opt);
1053 (*env)->ReleaseStringUTFChars(env, option, opt);