Searched refs:prctl (Results 1 - 7 of 7) sorted by last modified time

/libcore/luni/src/main/native/
H A Dandroid_system_OsConstants.cpp33 #include <sys/prctl.h>
H A Dlibcore_io_Posix.cpp48 #include <sys/prctl.h>
1460 int result = TEMP_FAILURE_RETRY(prctl(static_cast<int>(option),
1465 return throwIfMinusOne(env, "prctl", result);
2034 NATIVE_METHOD(Posix, prctl, "(IJJJJ)I"),
/libcore/luni/src/test/native/
H A Dlibcore_java_lang_ThreadTest.cpp21 #include <sys/prctl.h>
49 if (prctl(PR_GET_NAME, reinterpret_cast<unsigned long>(thread_name.get()), 0L, 0L, 0L) == 0) {
68 exception_message = new std::string("prctl(PR_GET_NAME) failed :");
/libcore/luni/src/main/java/android/system/
H A DOs.java341 * See <a href="http://man7.org/linux/man-pages/man2/prctl.2.html">prctl(2)</a>.
343 public static int prctl(int option, long arg2, long arg3, long arg4, long arg5) throws ErrnoException { return Libcore.os.prctl(option, arg2, arg3, arg4, arg5); }; method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java123 public int prctl(int option, long arg2, long arg3, long arg4, long arg5) throws ErrnoException { return os.prctl(option, arg2, arg3, arg4, arg5); }; method in class:ForwardingOs
H A DOs.java116 public int prctl(int option, long arg2, long arg3, long arg4, long arg5) throws ErrnoException; method in interface:Os
H A DPosix.java117 public native int prctl(int option, long arg2, long arg3, long arg4, long arg5) throws ErrnoException; method in class:Posix

Completed in 80 milliseconds