Searched refs:cmd (Results 1 - 19 of 19) sorted by last modified time

/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp872 static jint Posix_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { argument
887 int rc = IO_FAILURE_RETRY(env, int, fcntl, javaFd, cmd, &lock);
898 static jint Posix_fcntlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jint arg) { argument
900 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd, arg)));
903 static jint Posix_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { argument
905 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd)));
1213 static jobject Posix_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaInterfaceName) { argument
1219 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req)));
1226 static jint Posix_ioctlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaArg) { argument
1232 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd,
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java114 public void checkExec(String cmd) {
161 public void checkExec(String cmd) {
207 public void checkExec(String cmd) {
256 public void checkExec(String cmd) {
/libcore/ojluni/src/main/java/java/lang/
H A DCompiler.java74 * @param cmd
78 public static Object command(Object cmd) { argument
H A DSecurityManager.java133 public void checkExec(String cmd) { } argument
/libcore/ojluni/src/main/java/java/net/
H A DAbstractPlainSocketImpl.java641 abstract void socketSetOption(int cmd, boolean on, Object value) argument
H A DPlainSocketImpl.java71 native void socketSetOption(int cmd, boolean on, Object value) 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/ojluni/src/main/java/sun/net/
H A DTransferProtocolClient.java116 /** Sends command <i>cmd</i> to the server. */
117 public void sendServer(String cmd) { argument
118 serverOutput.print(cmd);
120 System.out.print("Sending: " + 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/sun/net/ftp/impl/
H A DFtpClient.java473 /** Sends command <i>cmd</i> to the server. */
474 private void sendServer(String cmd) { argument
475 out.print(cmd);
477 logger.finest("Server [" + serverAddr + "] <-- " + cmd);
517 * @param cmd
521 private boolean issueCommand(String cmd) throws IOException { argument
532 sendServer(cmd + "\r\n");
539 * @param cmd String containing the command
543 private void issueCommandCheck(String cmd) throws sun.net.ftp.FtpProtocolException, IOException { argument
544 if (!issueCommand(cmd)) {
558 openPassiveDataConnection(String cmd) argument
705 openDataConnection(String cmd) argument
2172 getHelp(String cmd) argument
2215 siteCmd(String cmd) argument
[all...]
/libcore/ojluni/src/main/java/sun/net/smtp/
H A DSmtpClient.java60 void issueCommand(String cmd, int expect) throws IOException { argument
61 sendServer(cmd);
/libcore/ojluni/src/main/native/
H A DFileDispatcherImpl.c169 int cmd = 0; local
185 cmd = F_SETLKW64;
187 cmd = F_SETLK64;
189 lockResult = fcntl(fd, cmd, &fl);
191 if ((cmd == F_SETLK64) && (errno == EAGAIN || errno == EACCES))
207 int cmd = F_SETLK64; local
217 lockResult = fcntl(fd, cmd, &fl);
H A DPlainSocketImpl.c853 jint cmd, jboolean on,
875 if (cmd == java_net_SocketOptions_SO_TIMEOUT) {
883 if (NET_MapSocketOption(cmd, &level, &optname)) {
888 switch (cmd) {
902 if (cmd == java_net_SocketOptions_SO_LINGER) {
949 jint cmd, jobject iaContainerObj) {
971 if (cmd == java_net_SocketOptions_SO_BINDADDR) {
1000 if (NET_MapSocketOption(cmd, &level, &optname)) {
1008 if (cmd == java_net_SocketOptions_SO_LINGER) {
1020 switch (cmd) {
852 PlainSocketImpl_socketSetOption(JNIEnv *env, jobject this, jint cmd, jboolean on, jobject value) argument
948 PlainSocketImpl_socketGetOption(JNIEnv *env, jobject this, jint cmd, jobject iaContainerObj) argument
[all...]
H A Dnet_util.h165 NET_MapSocketOption(jint cmd, int *level, int *optname);
168 NET_MapSocketOptionV6(jint cmd, int *level, int *optname);
H A Dnet_util_md.c914 NET_MapSocketOption(jint cmd, int *level, int *optname) { argument
916 jint cmd; member in struct:__anon32
941 switch (cmd) {
960 if (cmd == opts[i].cmd) {
/libcore/luni/src/main/java/android/system/
H A DOs.java122 /** @hide */ public static int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return Libcore.os.fcntlFlock(fd, cmd, arg); } argument
123 /** @hide */ public static int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return Libcore.os.fcntlInt(fd, cmd, arg); } argument
124 /** @hide */ public static int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return Libcore.os.fcntlVoid(fd, cmd); } argument
236 /** @hide */ public static InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return Libcore.os.ioctlInetAddress(fd, cmd, interfaceName); } argument
237 /** @hide */ public static int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return Libcore.os.ioctlInt(fd, cmd, ar argument
[all...]
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java70 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return os.fcntlFlock(fd, cmd, arg); } argument
71 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlInt(fd, cmd, arg); } argument
72 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, cmd); } argument
102 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return os.ioctlInetAddress(fd, cmd, interfaceName); } argument
103 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.ioctlInt(fd, cmd, ar argument
[all...]
H A DOs.java61 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException; argument
62 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; argument
63 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; argument
94 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException; argument
95 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; argument
H A DPosix.java64 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException; argument
65 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; argument
66 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; argument
96 public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException; argument
97 public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; argument

Completed in 1343 milliseconds