Searched defs:rc (Results 1 - 9 of 9) sorted by relevance

/dalvik/libcore/luni/src/main/native/
H A Djava_net_NetworkInterface.cpp46 int rc = getifaddrs(&list); local
47 return (rc != -1);
H A Difaddrs-android.h81 int rc = ioctl(fd.get(), SIOCGIFFLAGS, &ifr); local
82 if (rc == -1) {
H A Djava_io_File.cpp191 int rc = readdir_r(mDirStream, &mEntry, &result); local
192 if (rc != 0) {
H A Dorg_apache_harmony_luni_platform_OSFileSystem.cpp185 int rc = TEMP_FAILURE_RETRY(fcntl(handle, F_SETLKW, &lock)); local
186 if (rc == -1) {
262 ssize_t rc = sendfile(socket, fd, &off, count); local
263 if (rc == -1) {
266 return rc;
276 jlong rc = TEMP_FAILURE_RETRY(read(fd, dst, nbytes)); local
277 if (rc == 0) {
280 if (rc == -1) {
283 return rc;
289 jlong rc local
304 jlong rc = TEMP_FAILURE_RETRY(read(fd, bytes + offset, nbytes)); local
374 int rc = fsync(fd); local
381 jint rc = TEMP_FAILURE_RETRY(close(fd)); local
393 int rc = ftruncate(fd, length); local
434 jint rc = TEMP_FAILURE_RETRY(open(&path[0], flags, mode)); local
480 int rc = ioctl(fd, FIONREAD, &avail); local
[all...]
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp451 int rc = getnameinfo(reinterpret_cast<sockaddr*>(&ss), sa_size, local
453 if (rc != 0) {
454 jniThrowException(env, "java/net/UnknownHostException", gai_strerror(rc));
958 int rc = 0; local
969 rc = ioctl(handle, FIONBIO, &block);
970 if (rc != 0) {
971 return convertError(rc);
976 rc = doConnect(handle, &addr);
978 // addr.sin_addr.s_addr, (int) rc);
980 if (rc
1574 int rc = ioctl(handle, FIONBIO, &block); local
1779 int rc = TEMP_FAILURE_RETRY(bind(fd, realAddress, sizeof(sockaddr_storage))); local
1794 int rc = listen(handle, backlog); local
1845 int rc = pollSelectWait(env, serverFileDescriptor, timeout); local
1904 int rc = send(handle, &value, 1, MSG_OOB); local
2213 int rc = shutdown(fd, how); local
2384 int rc = getsockname(fd, (sockaddr*) &addr, &addrLen); local
2407 int rc = getsockname(fd, (sockaddr*) &addr, &addrLen); local
[all...]
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DTBSCertList.java144 public boolean equals(Object rc) { argument
145 if (!(rc instanceof RevokedCertificate)) {
148 RevokedCertificate rcert = (RevokedCertificate) rc;
/dalvik/libcore/sql/src/main/native/
H A Dsqlite_jni.c682 jboolean rc; local
703 rc = (*env)->CallBooleanMethod(env, h->cb, mid, arr);
713 return rc != JNI_FALSE;
1065 int rc = sqlite3_open(filename.result, (sqlite3 **) &h->sqlite); local
1067 if (rc == SQLITE_OK) {
1247 int rc; local
1263 rc = sqlite3_exec((sqlite3 *) h->sqlite, sqlstr.result,
1267 rc = sqlite_exec((sqlite *) h->sqlite, sqlstr.result,
1273 rc = sqlite_exec((sqlite *) h->sqlite, sqlstr.result,
1278 rc
1326 int rc = SQLITE_ERROR, nargs, i; local
3006 int rc = SQLITE_ERROR, nargs, i; local
[all...]
/dalvik/libcore/x-net/src/main/native/
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp1785 int rc = SSL_CTX_set_cipher_list(ssl_ctx, str); local
1787 if (rc == 0) {
/dalvik/vm/oo/
H A DClass.c3567 char rc = refField->field.signature[0]; local
3569 if (rc == '[' || rc == 'L') {
3579 c = rc;
3634 char rc = singleField->field.signature[0]; local
3636 if (rc != 'J' && rc != 'D') {
3638 //c = rc;
3674 char rc = doubleField->field.signature[0]; local
3676 if (rc
[all...]

Completed in 258 milliseconds