Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/lang/
DCompiler.java41 public static Object command(Object cmd) { in command() argument
DSecurityManager.java54 public void checkExec(String cmd) { } in checkExec() argument
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java68 …public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, c… in fcntlVoid() argument
69 …ublic int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException { return os.fcntlL… in fcntlLong() argument
70 …ock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { r… in fcntlFlock() argument
98 …netAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return os.ioc… in ioctlInetAddress() argument
99 …blic int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.io… in ioctlInt() argument
DOs.java59 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() argument
60 public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; in fcntlLong() argument
61 …public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, Interrup… in fcntlFlock() argument
90 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress() argument
91 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt() argument
DPosix.java62 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() argument
63 public native int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; in fcntlLong() argument
64 …public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, I… in fcntlFlock() argument
92 …public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throw… in ioctlInetAddress() argument
93 public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt() argument
/libcore/luni/src/main/java/android/system/
DOs.java112 …static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return Libcore.os.fcntlVo… in fcntlVoid() argument
113 …c int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException { return Libcore.os.fc… in fcntlLong() argument
114 …FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { retur… in fcntlFlock() argument
219 …ddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return Libcore.os… in ioctlInetAddress() argument
220 … int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return Libcore.o… in ioctlInt() argument
/libcore/luni/src/test/java/libcore/java/lang/
DOldRuntimeTest.java114 public void checkExec(String cmd) { in test_execLjava_lang_StringLjava_lang_StringArray()
161 public void checkExec(String cmd) { in test_execLjava_lang_StringArrayLjava_lang_StringArray()
207 public void checkExec(String cmd) { in test_execLjava_lang_StringLjava_lang_StringArrayLjava_io_File()
256 public void checkExec(String cmd) { in test_execLjava_lang_StringArrayLjava_lang_StringArrayLjava_io_File()
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp583 static jint Posix_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { in Posix_fcntlVoid() argument
585 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd))); in Posix_fcntlVoid()
588 static jint Posix_fcntlLong(JNIEnv* env, jobject, jobject javaFd, jint cmd, jlong arg) { in Posix_fcntlLong() argument
590 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd, arg))); in Posix_fcntlLong()
593 static jint Posix_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { in Posix_fcntlFlock() argument
608 int rc = IO_FAILURE_RETRY(env, int, fcntl, javaFd, cmd, &lock); in Posix_fcntlFlock()
905 static jobject Posix_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaI… in Posix_ioctlInetAddress() argument
911 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req))); in Posix_ioctlInetAddress()
918 static jint Posix_ioctlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaArg) { in Posix_ioctlInt() argument
924 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &arg))); in Posix_ioctlInt()
/libcore/luni/src/main/java/javax/sql/
DRowSet.java797 public void setCommand(String cmd) throws SQLException; in setCommand() argument