Searched refs:cmd (Results 1 - 17 of 17) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DCompiler.java74 * @param cmd
78 public static Object command(Object cmd) { argument
H A DSecurityManager.java143 public void checkExec(String cmd) { } argument
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
H A DFtpClient.java472 /** Sends command <i>cmd</i> to the server. */
473 private void sendServer(String cmd) { argument
474 out.print(cmd);
476 logger.finest("Server [" + serverAddr + "] <-- " + cmd);
516 * @param cmd
520 private boolean issueCommand(String cmd) throws IOException, argument
532 if (cmd.indexOf('\n') != -1) {
538 sendServer(cmd + "\r\n");
545 * @param cmd String containing the command
549 private void issueCommandCheck(String cmd) throw argument
564 openPassiveDataConnection(String cmd) argument
710 openDataConnection(String cmd) argument
2182 getHelp(String cmd) argument
2225 siteCmd(String cmd) argument
[all...]
/libcore/ojluni/src/main/native/
H A DFileDispatcherImpl.c197 int cmd = 0; local
213 cmd = F_SETLKW64;
215 cmd = F_SETLK64;
217 lockResult = fcntl(fd, cmd, &fl);
219 if ((cmd == F_SETLK64) && (errno == EAGAIN || errno == EACCES))
235 int cmd = F_SETLK64; local
245 lockResult = fcntl(fd, cmd, &fl);
H A Dnet_util.h193 NET_MapSocketOption(jint cmd, int *level, int *optname);
196 NET_MapSocketOptionV6(jint cmd, int *level, int *optname);
H A Dnet_util_md.c908 NET_MapSocketOption(jint cmd, int *level, int *optname) {
910 jint cmd;
932 switch (cmd) {
959 if (cmd == opts[i].cmd) {
/libcore/ojluni/src/main/java/java/net/
H A DPlainSocketImpl.java279 void socketSetOption0(int cmd, Object value) throws SocketException { argument
281 if (cmd == SO_TIMEOUT) {
285 IoBridge.setSocketOption(fd, cmd, value);
H A DAbstractPlainSocketImpl.java783 abstract void socketSetOption(int cmd, Object value) throws SocketException; argument
/libcore/luni/src/main/java/libcore/io/
H A DOs.java67 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException; argument
68 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; argument
69 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; argument
104 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException; argument
105 public int ioctlInt(FileDescriptor fd, int cmd, Int32Ref arg) throws ErrnoException; argument
H A DForwardingOs.java82 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return os.fcntlFlock(fd, cmd, arg); } argument
83 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlInt(fd, cmd, arg); } argument
84 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, cmd); } argument
118 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return os.ioctlInetAddress(fd, cmd, interfaceName); } argument
119 public int ioctlInt(FileDescriptor fd, int cmd, Int32Ref arg) throws ErrnoException { return os.ioctlInt(fd, cmd, ar argument
[all...]
H A DLinux.java73 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException; argument
74 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; argument
75 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; argument
109 public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException; argument
110 public native int ioctlInt(FileDescriptor fd, int cmd, Int32Ref arg) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java139 /** @hide */ public static int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return Libcore.os.fcntlFlock(fd, cmd, arg); } argument
140 /** @hide */ public static int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return Libcore.os.fcntlInt(fd, cmd, arg); } argument
141 /** @hide */ public static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return Libcore.os.fcntlVoid(fd, cmd); } argument
268 /** @hide */ public static InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return Libcore.os.ioctlInetAddress(fd, cmd, interfaceName); } argument
271 /** @hide */ public static int ioctlInt(FileDescriptor fd, int cmd, Int32Ref arg) throws ErrnoException { argument
272 return Libcore.os.ioctlInt(fd, cmd, ar
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java117 public void checkExec(String cmd) {
164 public void checkExec(String cmd) {
210 public void checkExec(String cmd) {
259 public void checkExec(String cmd) {
/libcore/luni/src/test/java/libcore/java/net/
H A DNetworkInterfaceTest.java209 String[] cmd = { "ip", "link" };
210 Process proc = Runtime.getRuntime().exec(cmd);
/libcore/ojluni/src/main/java/sun/net/ftp/
H A DFtpClient.java923 * @param cmd the command for which the help is requested or
930 public abstract String getHelp(String cmd) throws FtpProtocolException, IOException; argument
937 * @param cmd the command to be sent.
942 public abstract FtpClient siteCmd(String cmd) throws FtpProtocolException, IOException; argument
/libcore/ojluni/src/main/java/javax/sql/
H A DRowSet.java273 * @param cmd the SQL query that will be used to get the data for this
278 void setCommand(String cmd) throws SQLException; argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp1167 static jint Linux_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { argument
1182 int rc = IO_FAILURE_RETRY(env, int, fcntl, javaFd, cmd, &lock);
1193 static jint Linux_fcntlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jint arg) { argument
1195 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd, arg)));
1198 static jint Linux_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { argument
1200 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd)));
1662 static jobject Linux_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaInterfaceName) { argument
1668 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req)));
1675 static jint Linux_ioctlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaArg) { argument
1680 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd,
[all...]

Completed in 2039 milliseconds