Searched refs:executable (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DJdkFinder.java33 private static String getExecutable(String executable, String property) { argument
40 binPath += File.separatorChar + "bin" + File.separatorChar + executable;
58 * Returns the full path to an executable in jdk/bin based on system
69 * @return Full path to an executable in jdk/bin.
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DStructOffsetResolverBigBang.java49 String executable = compileObjC(nativeSrc, arch);
50 execute(executable, new Map1<String,Object>(){
H A DStructOffsetResolver.java69 String executable = compileObjC(nativeSrc, width);
70 execute(executable, new Map1<String,Object>(){
160 protected void execute(String executable, Fp.Map1<String,Object> lineProcessor) throws Exception { argument
162 Process p = Runtime.getRuntime().exec(new String[]{executable});
173 throw new RuntimeException(executable + " did not execute successfully: " + p.exitValue());
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.hpp50 bool executable);
57 bool executable);
101 ReservedSpace(size_t size, size_t alignment, bool large, bool executable);
108 bool executable() const { return _executable; } function in class:VALUE_OBJ_CLASS_SPEC
176 // Need to know if commit should be executable.
H A Dvirtualspace.cpp59 bool executable) {
60 initialize(size, alignment, large, NULL, 0, executable);
287 bool executable) {
307 _executable = executable;
326 base = os::reserve_memory_special(size, requested_address, executable);
407 bool special, bool executable) {
416 _executable = executable;
427 executable());
436 alignment, special(), executable());
541 // executable
57 ReservedSpace(size_t size, size_t alignment, bool large, bool executable) argument
284 initialize(size_t size, size_t alignment, bool large, char* requested_address, const size_t noaccess_prefix, bool executable) argument
406 ReservedSpace(char* base, size_t size, size_t alignment, bool special, bool executable) argument
[all...]
H A Dos.hpp111 static bool pd_commit_memory(char* addr, size_t bytes, bool executable);
113 bool executable);
117 bool executable, const char* mesg);
120 bool executable, const char* mesg);
275 static bool commit_memory(char* addr, size_t bytes, bool executable);
277 bool executable);
281 bool executable, const char* mesg);
284 bool executable, const char* mesg);
331 bool executable = false);
H A Dos.cpp391 // always able to find it when the loading executable is outside the JDK.
1434 bool os::commit_memory(char* addr, size_t bytes, bool executable) { argument
1435 bool res = pd_commit_memory(addr, bytes, executable);
1443 bool executable) {
1444 bool res = os::pd_commit_memory(addr, size, alignment_hint, executable);
1451 void os::commit_memory_or_exit(char* addr, size_t bytes, bool executable, argument
1453 pd_commit_memory_or_exit(addr, bytes, executable, mesg);
1458 bool executable, const char* mesg) {
1459 os::pd_commit_memory_or_exit(addr, size, alignment_hint, executable, mesg);
1442 commit_memory(char* addr, size_t size, size_t alignment_hint, bool executable) argument
1457 commit_memory_or_exit(char* addr, size_t size, size_t alignment_hint, bool executable, const char* mesg) argument
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java1614 * @param executable
1628 * <code>executable</code> is <code>false</code> and the underlying
1639 public boolean setExecutable(boolean executable, boolean ownerOnly) { argument
1647 return fs.setPermission(this, FileSystem.ACCESS_EXECUTE, executable, ownerOnly);
1660 * @param executable
1667 * <code>executable</code> is <code>false</code> and the underlying
1678 public boolean setExecutable(boolean executable) { argument
1679 return setExecutable(executable, true);
/openjdk7/hotspot/agent/src/scripts/
H A Dstart-debug-server.bat41 echo $0 <java executable> [Dr Watson dump file]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp532 bool _allow_exec; // executable code in space?
719 /* G_NOEXEC */ "Cannot locate executable file",
878 (JNIEnv *env, jobject this_obj, jstring executable, jstring corefile) {
879 // ignore executable file name, libproc.so can detect a.out name anyway.
877 Java_sun_jvm_hotspot_debugger_proc_ProcDebuggerLocal_attach0__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv *env, jobject this_obj, jstring executable, jstring corefile) argument

Completed in 74 milliseconds