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

12

/system/core/toolbox/
H A Dgetenforce.c9 int rc; local
11 rc = is_selinux_enabled();
12 if (rc <= 0) {
17 rc = security_getenforce();
18 if (rc < 0) {
24 if (rc)
H A Druncon.c10 int rc; local
17 rc = setexeccon(argv[1]);
18 if (rc < 0) {
H A Dchcon.c9 int rc, i; local
17 rc = setfilecon(argv[i], argv[1]);
18 if (rc < 0) {
H A Dsetenforce.c19 int rc = 0; local
29 rc = security_setenforce(atoi(argv[1]));
32 rc = security_setenforce(1);
34 rc = security_setenforce(0);
38 if (rc < 0) {
H A Dload_policy.c13 int fd, rc; local
41 rc = security_load_policy(map, sb.st_size);
42 if (rc < 0) {
H A Drestorecon.c18 int ch, i, rc; local
55 rc = selinux_android_restorecon(argv[i], flags);
56 if (rc < 0)
H A Dgetsebool.c17 int i, get_all = 0, rc = 0, active, pending, len = 0, opt; local
31 rc = security_get_boolean_names(&names, &len);
32 if (rc) {
79 rc = -1;
86 rc = -1;
103 return rc;
/system/core/libcutils/
H A Diosched_policy.c45 int rc; local
47 if ((rc = syscall(SYS_ioprio_get, IOPRIO_WHO_PROCESS, pid)) < 0) {
51 *clazz = (rc >> IOPRIO_CLASS_SHIFT);
52 *ioprio = (rc & 0xff);
H A Dsched_policy.c246 int rc = sched_getscheduler(tid); local
247 if (rc < 0)
249 else if (rc == SCHED_NORMAL)
251 else if (rc == SCHED_BATCH)
282 int rc = read(fd, statline, 1023); local
284 statline[rc] = 0;
/system/core/logwrapper/
H A Dlogwrapper.c57 int rc; local
83 rc = android_fork_execvp_ext(argc, &argv[0], &status, true,
85 if (!rc) {
87 rc = WEXITSTATUS(status);
89 rc = -ECHILD;
97 return rc;
/system/core/libmemtrack/
H A Dmemtrack_test.c31 int rc = 0; local
39 rc = 1;
45 rc = 2;
50 rc = 3;
59 if (rc != 0) {
66 rc = 4;
70 return rc;
/system/core/logd/
H A Dlibaudit.c41 int rc; local
49 rc = audit_get_reply(fd, &rep, GET_REPLY_BLOCKING, MSG_PEEK);
50 if (rc < 0) {
51 return rc;
56 rc = ((struct nlmsgerr *)rep.data)->error;
57 if (rc) {
58 return -rc;
85 int rc; local
136 rc = TEMP_FAILURE_RETRY(sendto(fd, &req, req.nlh.nlmsg_len, 0,
140 if (rc <
167 int rc; local
215 int rc = 0; local
271 int rc = close(fd); local
[all...]
H A DLogAudit.cpp66 int rc = vasprintf(&str, fmt, args); local
69 if (rc < 0) {
70 return rc;
128 rc = -ENOMEM;
176 rc = -ENOMEM;
199 return rc;
211 int rc = klogctl(KLOG_READ_ALL, buf, len); local
215 for(char *tok = buf; (rc >= 0) && ((tok = strtok(tok, "\r\n"))); tok = NULL) {
225 rc = logPrint("%s %s", type, audit);
227 rc
[all...]
/system/netd/server/
H A Dndc.c126 int rc = 0; local
134 if ((rc = select(sock +1, &read_fds, NULL, NULL, &to)) < 0) {
139 } else if (!rc) {
145 if ((rc = read(sock, buffer, 4096)) <= 0) {
147 if (rc == 0)
152 if (rc == 0)
160 for (i = 0; i < rc; i++) {
H A DNatController.cpp303 int rc = 0; local
339 rc = -1;
345 rc = -1;
350 rc = -1;
362 return rc;
/system/vold/
H A DExt4.cpp51 int rc; local
60 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
62 if (rc && errno == EROFS) {
65 rc = mount(fsPath, mountPoint, "ext4", flags, NULL);
68 return rc;
74 int rc; local
86 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status, false,
89 if (rc != 0) {
117 int rc; local
131 rc
[all...]
H A Dvdc.c111 int rc = 0; local
119 if ((rc = select(sock +1, &read_fds, NULL, NULL, &to)) < 0) {
123 } else if (!rc) {
129 if ((rc = read(sock, buffer, 4096)) <= 0) {
130 if (rc == 0)
135 if (rc == 0)
143 for (i = 0; i < rc; i++) {
H A DFat.cpp60 int rc = 0; local
69 rc = android_fork_execvp(ARRAY_SIZE(args), (char **)args, &status,
71 if (rc != 0) {
118 int rc; local
146 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
148 if (rc && errno == EROFS) {
151 rc = mount(fsPath, mountPoint, "vfat", flags, mountData);
154 if (rc == 0 && createLost) {
169 return rc;
175 int rc; local
[all...]
H A DLoop.cpp46 int rc; local
59 rc = ioctl(fd, LOOP_GET_STATUS64, &li);
61 if (rc < 0 && errno == ENXIO) {
65 if (rc < 0) {
90 int rc; local
103 rc = ioctl(fd, LOOP_GET_STATUS64, &li);
105 if (rc < 0 && errno == ENXIO) {
109 if (rc < 0) {
134 int rc; local
156 rc
[all...]
H A DCommandListener.cpp131 int rc = 0; local
147 rc = vm->mountVolume(argv[2]);
164 rc = vm->unmountVolume(argv[2], force, revert);
175 rc = vm->formatVolume(argv[2], wipe);
182 rc = vm->shareVolume(argv[2], argv[3]);
189 rc = vm->unshareVolume(argv[2], argv[3]);
211 rc = vm->mkdirs(argv[2]);
216 if (!rc) {
220 rc = ResponseCode::convertFromErrno();
221 cli->sendMsg(rc, "volum
344 int rc = 0; local
486 int rc = 0; local
569 int rc = 0; local
736 int rc = 0; local
[all...]
/system/core/libsysutils/src/
H A DSocketListener.cpp112 int rc; local
114 rc = TEMP_FAILURE_RETRY(write(mCtrlPipe[1], &c, 1));
115 if (rc != 1) {
158 int rc = 0; local
183 if ((rc = select(max + 1, &read_fds, NULL, NULL, NULL)) < 0) {
189 } else if (!rc)
H A DSocketClient.cpp158 int rc = sendDataLockedv(vec, 1); local
161 return rc;
166 int rc = sendDataLockedv(iov, iovcnt); local
169 return rc;
193 ssize_t rc = TEMP_FAILURE_RETRY( local
196 if (rc > 0) {
197 size_t written = rc;
210 if (rc == 0) {
/system/extras/procrank/
H A Dprocrank.c373 int rc = 0; local
381 rc = 1;
387 rc = 2;
392 rc = 3;
401 if (rc != 0) {
408 rc = 4;
412 return rc;
/system/extras/tests/memtest/
H A Dbandwidth.cpp261 int rc; local
264 rc = pthread_create(&threads[i], NULL, runBandwidthThread,
266 if (rc != 0) {
283 rc = pthread_join(threads[i], NULL);
284 if (rc != 0) {
/system/core/init/
H A Dutil.c84 * ("/dev/socket") as dictated in init.rc. This socket is inherited by the
507 int rc; local
516 rc = mkdir(path, mode);
525 return rc;

Completed in 640 milliseconds

12