Searched refs:prefixes (Results 76 - 83 of 83) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java554 // First band: Write lengths of shared prefixes.
555 int[] prefixes = new int[cpMap.length]; // includes 2 skipped zeroes
563 prefixes[i] = prefix;
575 int prefix = prefixes[i];
576 int suffix = str.length - prefixes[i];
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp120 jvmtiError set_native_method_prefixes(jint prefix_count, char** prefixes);
H A DjvmtiRedefineClasses.cpp2816 // native methods and the complex cases of native method prefixes being added and/or
2829 // Simultaneous add of prefixes m -> 3_2_1_m
2830 // Simultaneous removal of prefixes 3_2_1_m -> m
2838 char** prefixes; member in class:TransferNativeFunctionRegistration
2859 // Try applying further prefixes (other than this one).
2867 char* prefix = prefixes[depth];
2886 // Return the method name with old prefixes stripped away.
2891 // Old prefixing may be defunct, strip prefixes, if any.
2893 char* prefix = prefixes[i];
2902 // Strip any prefixes of
[all...]
H A DjvmtiEnv.cpp344 // prefixes - pre-checked for NULL
346 JvmtiEnv::SetNativeMethodPrefixes(jint prefix_count, char** prefixes) { argument
348 // isn't accessing the prefixes at the same time we are setting them.
351 return set_native_method_prefixes(prefix_count, prefixes);
354 return set_native_method_prefixes(prefix_count, prefixes);
H A Djni.cpp3945 // is not native. Ask JVM TI what prefixes have been specified. Then check
3946 // to see if the native method is now wrapped with the prefixes. See the
3955 char** prefixes = JvmtiExport::get_all_native_method_prefixes(&prefix_count); local
3957 char* prefix = prefixes[i];
3977 // found as non-native, so prefix is good, add it, probably just need more prefixes
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h1398 char** prefixes);
2350 char** prefixes) {
2351 return functions->SetNativeMethodPrefixes(this, prefix_count, prefixes);
2349 SetNativeMethodPrefixes(jint prefix_count, char** prefixes) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSchemaParser.java149 public Enumeration prefixes() { method in class:SchemaParser.AbstractContext
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactSyntax.java281 public Enumeration prefixes() { method in class:CompactSyntax

Completed in 95 milliseconds

1234