Home
last modified time | relevance | path

Searched defs:cmd (Results 1 – 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DCompiler.java78 public static Object command(Object cmd) { in command()
DSecurityManager.java133 public void checkExec(String cmd) { } in checkExec()
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
DFtpClient.java474 private void sendServer(String cmd) { in sendServer()
521 private boolean issueCommand(String cmd) throws IOException, in issueCommand()
550 … private void issueCommandCheck(String cmd) throws sun.net.ftp.FtpProtocolException, IOException { in issueCommandCheck()
565 …private Socket openPassiveDataConnection(String cmd) throws sun.net.ftp.FtpProtocolException, IOEx… in openPassiveDataConnection()
712 …private Socket openDataConnection(String cmd) throws sun.net.ftp.FtpProtocolException, IOException… in openDataConnection()
1330 String cmd = unique ? "STOU " : "STOR "; in putFileStream() local
1358 String cmd = unique ? "STOU " : "STOR "; in putFile() local
1667 String cmd = "NOOP"; in setType() local
2183 public String getHelp(String cmd) throws sun.net.ftp.FtpProtocolException, IOException { in getHelp()
2226 …public sun.net.ftp.FtpClient siteCmd(String cmd) throws sun.net.ftp.FtpProtocolException, IOExcept… in siteCmd()
/libcore/luni/src/test/java/libcore/java/net/
DNetworkInterfaceTest.java199 String[] cmd = { "ip", "link" }; in testGetNetworkInterfaces() local
/libcore/ojluni/src/main/java/java/net/
DPlainSocketImpl.java271 void socketSetOption0(int cmd, Object value) throws SocketException { in socketSetOption0()
DAbstractPlainSocketImpl.java742 abstract void socketSetOption(int cmd, Object value) throws SocketException; in socketSetOption()
/libcore/ojluni/src/main/java/sun/net/ftp/
DFtpClient.java930 public abstract String getHelp(String cmd) throws FtpProtocolException, IOException; in getHelp()
942 public abstract FtpClient siteCmd(String cmd) throws FtpProtocolException, IOException; in siteCmd()
/libcore/ojluni/src/main/native/
DFileDispatcherImpl.c197 int cmd = 0; in FileDispatcherImpl_lock0() local
235 int cmd = F_SETLK64; in FileDispatcherImpl_release0() local
Dnet_util_md.c894 NET_MapSocketOption(jint cmd, int *level, int *optname) { in NET_MapSocketOption()
896 jint cmd; in NET_MapSocketOption() member
/libcore/luni/src/main/java/libcore/io/
DOs.java66 …public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, Interrup… in fcntlFlock()
67 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; in fcntlInt()
68 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid()
102 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress()
103 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt()
DForwardingOs.java81 …public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, Interrup… in fcntlFlock()
82 …public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlIn… in fcntlInt()
83 …public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, c… in fcntlVoid()
116 …public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws Errno… in ioctlInetAddress()
117 …public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.… in ioctlInt()
DLinux.java72 …public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, I… in fcntlFlock()
73 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; in fcntlInt()
74 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; in fcntlVoid()
107 …public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throw… in ioctlInetAddress()
108 public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; in ioctlInt()
/libcore/luni/src/main/java/android/system/
DOs.java141 …/** @hide */ public static int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws Errn… in fcntlFlock()
142 …/** @hide */ public static int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException… in fcntlInt()
143 …/** @hide */ public static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { retur… in fcntlVoid()
268 …/** @hide */ public static InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfa… in ioctlInetAddress()
269 …/** @hide */ public static int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoEx… in ioctlInt()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1102 static jint Linux_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { in Linux_fcntlFlock()
1128 static jint Linux_fcntlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jint arg) { in Linux_fcntlInt()
1133 static jint Linux_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { in Linux_fcntlVoid()
1575 static jobject Linux_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaI… in Linux_ioctlInetAddress()
1588 static jint Linux_ioctlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaArg) { in Linux_ioctlInt()
/libcore/ojluni/src/main/java/javax/sql/
DRowSet.java278 void setCommand(String cmd) throws SQLException; in setCommand()