Searched defs:cmd (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/main/java/java/lang/ |
D | Compiler.java | 41 public static Object command(Object cmd) { in command()
|
D | SecurityManager.java | 54 public void checkExec(String cmd) { } in checkExec()
|
/libcore/luni/src/main/java/libcore/io/ |
D | Os.java | 59 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() 60 public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; in fcntlLong() 61 …public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, Interrup… in fcntlFlock() 90 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress() 91 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt()
|
D | ForwardingOs.java | 68 …public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, c… in fcntlVoid() 69 …public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException { return os.fcntl… in fcntlLong() 70 …public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, Interrup… in fcntlFlock() 98 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress() 99 …public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.… in ioctlInt()
|
D | Posix.java | 62 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() 63 public native int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; in fcntlLong() 64 …public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, I… in fcntlFlock() 92 …public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throw… in ioctlInetAddress() 93 public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt()
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 112 …/** @hide */ public static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { retur… in fcntlVoid() 113 …/** @hide */ public static int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoExcepti… in fcntlLong() 114 …/** @hide */ public static int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws Errn… in fcntlFlock() 219 …/** @hide */ public static InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfa… in ioctlInetAddress() 220 …/** @hide */ public static int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoEx… in ioctlInt()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Posix.cpp | 583 static jint Posix_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { in Posix_fcntlVoid() 588 static jint Posix_fcntlLong(JNIEnv* env, jobject, jobject javaFd, jint cmd, jlong arg) { in Posix_fcntlLong() 593 static jint Posix_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { in Posix_fcntlFlock() 905 static jobject Posix_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaI… in Posix_ioctlInetAddress() 918 static jint Posix_ioctlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaArg) { in Posix_ioctlInt()
|
/libcore/luni/src/main/java/javax/sql/ |
D | RowSet.java | 797 public void setCommand(String cmd) throws SQLException; in setCommand()
|