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

/libcore/luni/src/main/java/java/lang/
H A DCompiler.java37 * @param cmd
41 public static Object command(Object cmd) { argument
H A DSecurityManager.java54 public void checkExec(String cmd) { } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java52 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException { return os.fcntlVoid(fd, cmd); } argument
53 public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException { return os.fcntlLong(fd, cmd, arg); } argument
54 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException { return os.fcntlFlock(fd, cmd, arg); } argument
83 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException { return os.ioctlInetAddress(fd, cmd, interfaceName); } argument
84 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.ioctlInt(fd, cmd, ar argument
[all...]
H A DOs.java43 public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; argument
44 public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; argument
45 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException; argument
75 public InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException; argument
76 public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; argument
H A DPosix.java46 public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException; argument
47 public native int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException; argument
48 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException; argument
77 public native InetAddress ioctlInetAddress(FileDescriptor fd, int cmd, String interfaceName) throws ErrnoException; argument
78 public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException; argument
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java136 public void checkExec(String cmd) {
183 public void checkExec(String cmd) {
229 public void checkExec(String cmd) {
278 public void checkExec(String cmd) {
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp523 static jint Posix_fcntlVoid(JNIEnv* env, jobject, jobject javaFd, jint cmd) { argument
525 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd)));
528 static jint Posix_fcntlLong(JNIEnv* env, jobject, jobject javaFd, jint cmd, jlong arg) { argument
530 return throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd, arg)));
533 static jint Posix_fcntlFlock(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaFlock) { argument
549 int rc = throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd, &lock)));
835 static jobject Posix_ioctlInetAddress(JNIEnv* env, jobject, jobject javaFd, jint cmd, jstring javaInterfaceName) { argument
841 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req)));
848 static jint Posix_ioctlInt(JNIEnv* env, jobject, jobject javaFd, jint cmd, jobject javaArg) { argument
854 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd,
[all...]
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java792 * @param cmd
797 public void setCommand(String cmd) throws SQLException; argument
/libcore/crypto/src/main/java/org/conscrypt/
H A DNativeCrypto.java80 public static native int ENGINE_ctrl_cmd_string(long engineRef, String cmd, String arg, argument
/libcore/crypto/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp1063 static long bio_stream_ctrl(BIO *b, int cmd, long, void *) { argument
1066 switch (cmd) {

Completed in 3052 milliseconds