/openjdk7/jdk/test/demo/jvmti/hprof/ |
H A D | OptionsTest.java | 40 List<String> options = new LinkedList<String>(); 42 options.add("cpu=samples,depth=0"); 43 options.add("cpu=times,depth=0"); 44 options.add("cpu=old,depth=0"); 45 options.add("depth=0"); 47 for(String option: options) { 48 /* Run JVMTI hprof agent with various options */
|
H A D | StackMapTableTest.java | 41 List<String> options = new LinkedList<String>(); 43 options.add("cpu=samples"); 44 options.add("cpu=times"); 45 options.add("heap=sites"); 46 options.add(""); 48 for(String option: options) { 49 /* Run JVMTI hprof agent with various options */
|
/openjdk7/hotspot/agent/src/share/native/jvmdi/ |
H A D | sa.hpp | 29 JVM_OnLoad(JavaVM *vm, char *options, void *reserved);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/ |
H A D | BadCommandLineException.java | 34 private Options options; field in class:BadCommandLineException 49 assert this.options==null; 50 this.options = opt; 58 return options;
|
H A D | WSCodeWriter.java | 42 private final Options options; field in class:WSCodeWriter 44 public WSCodeWriter( File outDir, Options options) throws IOException { argument 46 this.options = options; 52 options.addGeneratedFile(f);
|
H A D | WsimportTool.java | 69 * Wsimport specific options 71 private final WsimportOptions options = new WsimportOptions(); field in class:WsimportTool 128 if (options.verbose) 133 if (!options.quiet) 145 if(options.debugMode){ 158 options.parseArguments(args); 159 options.validate(); 160 if(options.debugMode) 162 options.parseBindings(receiver); 165 if( !options 468 usage(Options options) argument [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/ |
H A D | BadCommandLineException.java | 34 private Options options; field in class:BadCommandLineException 49 assert this.options==null; 50 this.options = opt; 57 return options;
|
/openjdk7/jdk/src/share/classes/javax/security/auth/callback/ |
H A D | ConfirmationCallback.java | 45 * with <code>options</code> instead of an <code>optionType</code>. 147 private String[] options; field in class:ConfirmationCallback 183 * does not correspond to one of the options in 216 * message type, a list of options and a default option. 221 * The confirmation options are listed in the <code>options</code> array, 223 * in a manner consistent with the way preset options are displayed. 230 * @param options the list of confirmation options. <p> 233 * into the <code>options</cod 245 ConfirmationCallback(int messageType, String[] options, int defaultOption) argument 364 ConfirmationCallback(String prompt, int messageType, String[] options, int defaultOption) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
H A D | DLSSampleOptions.java | 31 * This class stores options how to playback sampled data like pitch/tuning, 42 long options; field in class:DLSSampleOptions 66 return options; 69 public void setOptions(long options) { argument 70 this.options = options;
|
/openjdk7/langtools/test/tools/apt/Options/ |
H A D | options.sh | 29 # @run shell options.sh 30 # @summary Test availabilty of command line options in processors 77 # Jar files created; verify options properly present on both initial 84 printf "%s\n" "-classpath ${JARCP}" > options 85 printf "%s\n" "-sourcepath ${SOURCEP}" >> options 86 printf "%s\n" "${TESTSRC}/Marked.java" >> options 88 ${APT} @options 93 echo "Failed to indentify missing options" 101 printf "%s\n" "-Afoo -Abar" >> options 103 ${APT} @options [all...] |
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/ |
H A D | LinuxFileSystemProvider.java | 56 LinkOption... options) 60 Util.followLinks(options)); 64 Util.followLinks(options)); 66 return super.getFileAttributeView(obj, type, options); 72 LinkOption... options) 76 Util.followLinks(options)); 80 Util.followLinks(options)); 82 return super.getFileAttributeView(obj, name, options); 89 LinkOption... options) 94 getFileAttributeView(file, DosFileAttributeView.class, options); 54 getFileAttributeView(Path obj, Class<V> type, LinkOption... options) argument 70 getFileAttributeView(Path obj, String name, LinkOption... options) argument 87 readAttributes(Path file, Class<A> type, LinkOption... options) argument [all...] |
H A D | SolarisFileSystemProvider.java | 57 LinkOption... options) 61 Util.followLinks(options)); 65 Util.followLinks(options)); 67 return super.getFileAttributeView(obj, type, options); 73 LinkOption... options) 77 Util.followLinks(options)); 80 Util.followLinks(options)); 81 return super.getFileAttributeView(obj, name, options); 55 getFileAttributeView(Path obj, Class<V> type, LinkOption... options) argument 71 getFileAttributeView(Path obj, String name, LinkOption... options) argument
|
/openjdk7/hotspot/src/share/tools/hsdis/ |
H A D | hsdis.h | 56 const char* options); 67 const char* options);
|
/openjdk7/jdk/test/com/sun/security/auth/module/LdapLoginModule/ |
H A D | CheckConfigs.java | 181 Map<String, String> options = new HashMap<>(4); 182 options.put("userProvider", "ldap://localhost:23456/dc=example,dc=com"); 183 options.put("userFilter", 185 options.put("authzIdentity", "{EMPLOYEENUMBER}"); 186 options.put("debug", "true"); 191 options) 216 Map<String, String> options = new HashMap<>(5); 217 options.put("userProvider", "ldap://localhost:23456/dc=example,dc=com"); 218 options.put("authIdentity", "{USERNAME}"); 219 options [all...] |
/openjdk7/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/ |
H A D | OptionTest.java | 97 Map options = new HashMap(); 98 options.put(O_TYPE, P11KEYSTORE); 99 m.initialize(s, null, null, options); 112 options = new HashMap(); 113 options.put(O_TYPE, P11KEYSTORE); 114 options.put(O_URL, NONE); 115 options.put(O_KPASS_URL, KPASS_URL); 116 m.initialize(s, null, null, options); 128 options = new HashMap(); 129 options [all...] |
/openjdk7/jdk/src/share/npt/ |
H A D | npt.c | 46 nptInitialize(NptEnv **pnpt, char *nptVersion, char *options) argument 63 if ( options != NULL ) { 64 npt->options = strdup(options); 82 nptTerminate(NptEnv* npt, char *options) argument 85 /* FIXUP: options? Check memory or something? */ 86 if ( npt->options != NULL ) { 87 (void)free(npt->options);
|
/openjdk7/jdk/src/windows/classes/sun/security/krb5/internal/tools/ |
H A D | Kinit.java | 51 private KinitOptions options; field in class:Kinit 136 * @param args array of ticket request options. 137 * Avaiable options are: -f, -p, -c, principal, password. 145 options = new KinitOptions(); 147 options = new KinitOptions(args); 150 PrincipalName principal = options.getPrincipal(); 158 char[] psswd = options.password; 159 boolean useKeytab = options.useKeytabFile(); 183 String ktabName = options.keytabFileName(); 197 setOptions(KDCOptions.FORWARDABLE, options [all...] |
/openjdk7/jdk/src/solaris/npt/ |
H A D | npt_md.h | 39 #define NPT_INITIALIZE(path,pnpt,version,options) \ 50 ((NptInitialize)_sym)((pnpt), version, (options)); \ 55 #define NPT_TERMINATE(npt,options) \ 64 ((NptTerminate)_sym)((npt), (options)); \
|
/openjdk7/jdk/src/windows/npt/ |
H A D | npt_md.h | 38 #define NPT_INITIALIZE(path,pnpt,version,options) \ 49 ((NptInitialize)_sym)((pnpt), version, (options)); \ 54 #define NPT_TERMINATE(npt,options) \ 64 ((NptTerminate)_sym)((npt), (options)); \
|
/openjdk7/langtools/src/share/classes/com/sun/javadoc/ |
H A D | Doclet.java | 34 * description</a>. If the doclet takes command line options, 64 * Check for doclet-added options. Returns the number of 68 * This method is required if the doclet contains any options. 81 * Check that options have the correct arguments. 91 * @return true if the options are valid. 93 public static boolean validOptions(String options[][], argument 95 return true; // default is options are valid
|
/openjdk7/jdk/src/share/demo/jvmti/hprof/ |
H A D | hprof_init.h | 44 JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *vm, char *options, void *reserved);
|
/openjdk7/jdk/test/javax/security/auth/login/LoginContext/ |
H A D | DefaultHandlerModule.java | 37 private Map options; field in class:DefaultHandlerModule 44 Map<String,?> sharedState, Map<String,?> options) { 49 this.options = options; 43 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
|
H A D | ModuleSubjectModule.java | 37 private Map options; field in class:ModuleSubjectModule 47 Map<String,?> sharedState, Map<String,?> options) { 52 this.options = options; 46 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
|
/openjdk7/jdk/src/share/classes/sun/security/krb5/ |
H A D | KrbAsReq.java | 53 KDCOptions options, // ok, new KDCOptions() 64 if (options == null) { 65 options = new KDCOptions(); 70 if (options.get(KDCOptions.FORWARDED) || 71 options.get(KDCOptions.PROXY) || 72 options.get(KDCOptions.ENC_TKT_IN_SKEY) || 73 options.get(KDCOptions.RENEW) || 74 options.get(KDCOptions.VALIDATE)) { 79 if (options.get(KDCOptions.POSTDATED)) { 85 if (options 52 KrbAsReq(EncryptionKey pakey, KDCOptions options, PrincipalName cname, PrincipalName sname, KerberosTime from, KerberosTime till, KerberosTime rtime, int[] eTypes, HostAddresses addresses ) argument [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/standard/ |
H A D | Standard.java | 42 public static boolean validOptions(String[][] options, argument 44 return HtmlDoclet.validOptions(options, reporter);
|