HomeSort by relevance Sort by last modified time
    Searched defs:rc (Results 151 - 175 of 353) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/bluetooth/glib/tests/
hash-test.c 355 gint i, rc; local
370 rc = GPOINTER_TO_INT (
373 g_assert (rc != 0);
374 g_assert ((rc - 42) == i);
  /external/chromium/third_party/icu/source/common/
uidna.cpp 96 int32_t rc; local
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
111 if(rc!=0) {
112 lengthResult=rc;
  /external/chromium/third_party/icu/source/test/cintltst/
nfsprep.c 153 int left, middle, right,rc; local
160 rc=strncmp(sortedArr[middle],target, targetLen);
162 if(rc<0){
164 }else if(rc >0){
  /external/chromium/third_party/icu/source/test/intltest/
idnaref.cpp 77 int32_t rc; local
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
91 if(rc!=0) {
92 return rc;
normconf.cpp 410 int32_t rc; local
413 rc=Normalizer::compare(field[0], field[2], (options<<UNORM_COMPARE_NORM_OPTIONS_SHIFT)|U_COMPARE_IGNORE_CASE, status);
417 } else if(rc!=0) {
418 errln("Normalizer::compare(original, NFD, case-insensitive) returned %d instead of 0 for equal", rc);
  /external/chromium/third_party/icu/source/tools/icuswap/
icuswap.cpp 110 int rc; local
169 rc=2;
176 rc=2;
189 rc=2;
198 rc=3;
211 rc=4;
239 rc=4;
249 rc=4;
257 rc=5;
263 rc=6
    [all...]
  /external/dbus/bus/
selinux.c 147 int rc; local
149 rc = pthread_create (&avc_notify_thread, NULL, (void *(*) (void *)) run, NULL);
150 if (rc != 0)
152 _dbus_warn ("Failed to start AVC thread: %s\n", _dbus_strerror (rc));
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 141 ssize_t rc; local
185 rc = recv(fd, &packet, sizeof(packet), 0);
187 if (rc < (ssize_t)(sizeof(packet) - sizeof(packet.options)))
193 if ((p = option_find(&packet, (size_t)rc, OPTION_LEASE_TIME, 4)))
dhcp_release.c 106 ssize_t rc; local
118 while ((rc = recvmsg(fd, &msg, MSG_PEEK)) == -1 && errno == EINTR);
122 if (rc == -1 && errno == EOPNOTSUPP)
129 if (rc == -1 || !(msg.msg_flags & MSG_TRUNC))
137 while ((rc = recvmsg(fd, &msg, 0)) == -1 && errno == EINTR);
139 return rc;
  /external/dnsmasq/src/
helper.c 176 pid_t rc = wait(&status); local
178 if (rc == pid)
188 if (rc == -1 && errno != EINTR)
407 ssize_t rc; local
412 if ((rc = write(daemon->helperfd, buf, bytes_in_buf)) != -1)
414 if (bytes_in_buf != (size_t)rc)
415 memmove(buf, buf + rc, bytes_in_buf - rc);
416 bytes_in_buf -= rc;
lease.c 119 int rc = 0; local
122 if (!leasestream || (rc = pclose(leasestream)) == -1 || WEXITSTATUS(rc) == 127 || WEXITSTATUS(rc) == 126)
124 if (WEXITSTATUS(rc) == 127)
126 else if (WEXITSTATUS(rc) == 126)
131 if (WEXITSTATUS(rc) != 0)
133 sprintf(daemon->dhcp_buff, "%d", WEXITSTATUS(rc));
134 die(_("lease-init script returned exit code %s"), daemon->dhcp_buff, WEXITSTATUS(rc) + EC_INIT_OFFSET);
log.c 149 ssize_t rc; local
162 if ((rc = write(log_fd, entries->payload + entries->offset, entries->length)) != -1)
164 entries->length -= rc;
165 entries->offset += rc;
network.c 393 int rc, opt = 1; local
430 if ((rc = bind(new->fd, &iface->addr.sa, sa_len(&iface->addr))) != -1)
447 if (rc == -1 || bind(new->tcpfd, &iface->addr.sa, sa_len(&iface->addr)) == -1)
util.c 174 int rc; local
184 if ((rc = idna_to_ascii_lz(in, &ret, 0)) != IDNA_SUCCESS)
189 if (nomem && (rc == IDNA_MALLOC_ERROR || rc == IDNA_DLOPEN_ERROR))
  /external/e2fsprogs/lib/blkid/
devname.c 303 int rc; local
309 rc = asprintf(&device, "mapper/%s", names->name);
310 if (rc < 0)
  /external/icu4c/common/
uidna.cpp 96 int32_t rc; local
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
111 if(rc!=0) {
112 lengthResult=rc;
  /external/icu4c/test/cintltst/
nfsprep.c 153 int left, middle, right,rc; local
160 rc=strncmp(sortedArr[middle],target, targetLen);
162 if(rc<0){
164 }else if(rc >0){
  /external/icu4c/test/intltest/
idnaref.cpp 77 int32_t rc; local
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
91 if(rc!=0) {
92 return rc;
normconf.cpp 427 int32_t rc; local
430 rc=Normalizer::compare(field[0], field[2], (options<<UNORM_COMPARE_NORM_OPTIONS_SHIFT)|U_COMPARE_IGNORE_CASE, status);
434 } else if(rc!=0) {
435 errln("Normalizer::compare(original, NFD, case-insensitive) returned %d instead of 0 for equal", rc);
simplethread.cpp 359 int32_t rc; local
369 rc = pthread_attr_create(&attr);
372 rc = pthread_create(&(imp->fThread),attr,&SimpleThreadProc,(void*)this);
375 rc = pthread_attr_init(&attr);
391 rc = pthread_create(&(imp->fThread),&attr,&SimpleThreadProc,(void*)this);
394 if (rc != 0) {
400 return rc;
  /external/icu4c/tools/icuswap/
icuswap.cpp 110 int rc; local
169 rc=2;
176 rc=2;
189 rc=2;
198 rc=3;
211 rc=4;
239 rc=4;
249 rc=4;
257 rc=5;
263 rc=6
    [all...]
  /external/jdiff/src/jdiff/
JDiff.java 189 int rc = runAnt(args); local
  /external/kernel-headers/original/asm-x86/xen/
hypercall.h 231 int rc = _hypercall2(int, event_channel_op, cmd, arg); local
232 if (unlikely(rc == -ENOSYS)) {
236 rc = _hypercall1(int, event_channel_op_compat, &op);
239 return rc;
257 int rc = _hypercall2(int, physdev_op, cmd, arg); local
258 if (unlikely(rc == -ENOSYS)) {
262 rc = _hypercall1(int, physdev_op_compat, &op);
265 return rc;
  /external/libpcap/
pcap-bpf.c 427 int numminors, i, rc; local
465 rc = stat(BPF_NODE "0", &sbuf);
466 if (rc == -1 && errno != ENOENT) {
473 if (rc == -1 || getmajor(sbuf.st_rdev) != major) {
  /external/libpng/contrib/gregbook/
rpng-win.c 145 int rc, alen, flen; local
309 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
310 switch (rc) {
648 int rc; local
658 rc = StretchDIBits(hdc, 0, 0, image_width, image_height,

Completed in 2074 milliseconds

1 2 3 4 5 67 8 91011>>