Searched defs:cmd (Results 1 – 7 of 7) 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 | ForwardingOs.java | 46 …public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, c… in fcntlVoid() 47 …public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException { return os.fcntl… in fcntlLong() 48 …public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException { return … in fcntlFlock() 74 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress() 75 …public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.… in ioctlInt()
|
| D | Os.java | 37 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() 38 public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; in fcntlLong() 39 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException; in fcntlFlock() 66 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress() 67 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt()
|
| D | Posix.java | 40 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid() 41 public native int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; in fcntlLong() 42 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException; in fcntlFlock() 68 …public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throw… in ioctlInetAddress() 69 public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt()
|
| /libcore/luni/src/main/native/ |
| D | libcore_io_Posix.cpp | 462 static jint Posix_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { in Posix_fcntlVoid() 467 static jint Posix_fcntlLong(JNIEnv* env, jobject, jobject javaFd, jint cmd, jlong arg) { in Posix_fcntlLong() 472 static jint Posix_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { in Posix_fcntlFlock() 766 static jobject Posix_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaI… in Posix_ioctlInetAddress() 779 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()
|