Searched defs:rc (Results 76 - 100 of 723) sorted by relevance

1234567891011>>

/external/libselinux/src/
H A Dcallbacks.c17 int rc; local
20 rc = vfprintf(stderr, fmt, ap);
22 return rc;
H A Dprocattr.c23 int fd, rc; local
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
34 if (rc < 0)
80 int fd, rc; local
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
91 if (rc < 0)
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.c302 int rc = scan[n]; local
303 if (rc == idx)
320 int rc = scan[n]; local
322 i = rc / l;
323 j = rc % l;
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_svc_layercontext.h23 RATE_CONTROL rc; member in struct:__anon24977
70 // Initialize second pass rc for spatial svc.
/external/libxml2/
H A Dxmlmodule.c116 int rc = -1; local
122 return rc;
125 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
127 if (rc == -1) {
133 return rc;
136 return rc;
152 int rc; local
161 rc = xmlModulePlatformClose(module->handle);
163 if (rc != 0) {
171 rc
289 int rc; local
322 int rc; local
375 status_t rc; local
394 status_t rc; local
418 int rc; local
449 int rc; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Drblist.c20 int rc; local
24 rc = rblist->node_cmp(parent, new_entry);
25 if (rc > 0)
27 else if (rc < 0)
57 int rc; local
61 rc = rblist->node_cmp(parent, entry);
62 if (rc > 0)
64 else if (rc < 0)
/external/llvm/unittests/Support/
H A DProgramTest.cpp97 int rc = ExecuteAndWait(my_exe, argv, &envp[0], redirects, local
101 EXPECT_EQ(0, rc);
/external/oprofile/opjitconv/
H A Dparse_dump.c30 int rc = OP_JIT_CONV_OK; local
75 rc = OP_JIT_CONV_FAIL;
77 return rc;
140 int rc = OP_JIT_CONV_OK; local
146 rc = OP_JIT_CONV_FAIL;
153 rc = OP_JIT_CONV_FAIL;
171 rc = OP_JIT_CONV_FAIL;
180 rc = OP_JIT_CONV_FAIL;
188 return rc;
198 int rc local
[all...]
/external/qemu/distrib/libselinux/src/
H A Dcallbacks.c17 int rc; local
20 rc = vfprintf(stderr, fmt, ap);
22 return rc;
H A Dprocattr.c23 int fd, rc; local
29 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
34 if (rc < 0)
80 int fd, rc; local
86 rc = asprintf(&path, "/proc/%d/attr/%s", pid, attr);
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
91 if (rc < 0)
/external/qemu/distrib/sdl-1.2.15/test/
H A Dloopwave.c28 static void quit(int rc) argument
31 exit(rc);
/external/skia/src/core/
H A DSkDeviceLooper.cpp11 const SkRasterClip& rc,
14 , fBaseRC(rc)
22 if (!rc.isEmpty()) {
24 SkASSERT(SkIRect::MakeWH(base.width(), base.height()).contains(rc.getBounds()));
27 if (rc.isEmpty() || !fClippedBounds.intersect(bounds, rc.getBounds())) {
10 SkDeviceLooper(const SkBitmap& base, const SkRasterClip& rc, const SkIRect& bounds, bool aa) argument
H A DSkFlate.cpp48 int rc; local
50 rc = deflateInit(&flateData, Z_DEFAULT_COMPRESSION);
52 rc = inflateInit(&flateData);
53 if (rc != Z_OK)
67 rc = Z_OK;
71 rc = Z_BUF_ERROR;
77 if (rc != Z_OK)
89 rc = deflate(&flateData, Z_NO_FLUSH);
91 rc = inflate(&flateData, Z_NO_FLUSH);
93 while (rc
[all...]
/external/srec/audio/test/AudioHardwareRecord/src/
H A DAudioHardwareRecord.c47 int rc; local
52 rc = AudioSetInputFormat(SAMPLING_RATE, N_CHANNELS_PER_TUPLE);
53 if (rc != 0)
55 printf("ERROR: AudioSetInputFormat() returns %d\n", rc);
59 rc = AudioOpen();
60 if (rc < 0)
62 printf("ERROR: AudioOpen() returns %d (device handle/ID)\n", rc);
69 rc = AudioRead(&(recordedSamples[i]), N_FRAMES_PER_BUFFER);
70 if (rc > 0)
71 i += (rc * N_TUPLES_PER_FRAM
[all...]
/external/srec/audio/test/AudioHardwareRecordLoop/src/
H A DAudioHardwareRecordLoop.c51 int rc; local
59 rc = AudioSetInputFormat(SAMPLING_RATE, N_CHANNELS_PER_TUPLE);
60 if (rc != 0)
62 printf("ERROR: AudioSetInputFormat() returns %d\n", rc);
81 rc = AudioSetInputFormat(SAMPLING_RATE, N_CHANNELS_PER_TUPLE);
82 if (rc != 0)
84 printf("ERROR: AudioSetInputFormat() returns %d\n", rc);
93 rc = AudioOpen();
94 if (rc < 0)
96 printf("ERROR: AudioOpen() returns %d (device handle/ID)\n", rc);
[all...]
/external/srec/portable/src/
H A DPFileImpl.c38 ESR_ReturnCode rc; local
55 rc = ESR_OUT_OF_MEMORY;
56 PLogError(ESR_rc2str(rc));
62 rc = PtrdIsEnabled(&threadingEnabled);
63 if (rc != ESR_SUCCESS)
65 pfprintf(PSTDERR, L("[%s:%d] PtrdIsEnabled failed with %s\n"), __FILE__, __LINE__, ESR_rc2str(rc));
70 rc = PtrdMonitorCreate(&impl->lock);
71 if (rc != ESR_SUCCESS)
78 return rc;
83 #define LOCK_MUTEX(rc, imp
111 ESR_ReturnCode rc; local
144 ESR_ReturnCode rc; local
164 ESR_ReturnCode rc; local
[all...]
/external/srec/portable/src/UNIX/
H A DPANSIFileSystemUNIXImpl.c41 ESR_ReturnCode rc; local
43 CHKLOG(rc, lstrtrim(path));
44 CHKLOG(rc, PFileSystemCanonicalSlashes(path));
45 CHKLOG(rc, PFileSystemIsAbsolutePath(path, &isAbsolute));
52 CHKLOG(rc, PHashTableEntryGetFirst(impl->directoryMap, &entry));
55 CHKLOG(rc, PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)&value));
67 CHKLOG(rc, PHashTableEntryAdvance(&entry));
71 rc = ESR_INVALID_STATE;
79 CHKLOG(rc, lstrinsert(bestKey, path, 0, len));
84 CHKLOG(rc, lstrinser
95 ESR_ReturnCode rc; local
122 ESR_ReturnCode rc; local
154 ESR_ReturnCode rc; local
[all...]
/external/srec/srec/Nametag/src/
H A DNametagImpl.c34 ESR_ReturnCode rc; local
44 rc = result->getSize(result, &len);
45 if (rc != ESR_SUCCESS)
47 PLogError(ESR_rc2str(rc));
53 rc = ESR_INVALID_ARGUMENT;
56 rc = result->getLocale(result, &locale);
60 rc = result->getValue(result, 0, L("meaning"), transcription, &len);
62 if (rc != ESR_SUCCESS && rc != ESR_BUFFER_OVERFLOW)
64 PLogError(ESR_rc2str(rc));
133 ESR_ReturnCode rc; local
216 ESR_ReturnCode rc; local
236 ESR_ReturnCode rc; local
[all...]
/external/srec/srec/Semproc/src/
H A DExpressionEvaluator.c42 ESR_ReturnCode rc; local
53 MEMCHK(rc, (*resultLen + opLen), MAX_STRING_LEN);
59 return rc;
H A DSemanticResultImpl.c32 ESR_ReturnCode rc; local
52 rc = HashMapCreate(&impl->results);
53 if (rc != ESR_SUCCESS)
59 return rc;
65 ESR_ReturnCode rc; local
67 CHKLOG(rc, impl->results->getSize(impl->results, count));
70 return rc;
77 ESR_ReturnCode rc; local
80 CHKLOG(rc, HashMapGetSize(impl->results, &size));
96 CHKLOG(rc, HashMapGetKeyAtInde
108 ESR_ReturnCode rc; local
126 ESR_ReturnCode rc = ESR_SUCCESS; local
[all...]
/external/srec/srec/include/
H A Dportable.h53 ESR_ReturnCode rc; local
64 CHKLOG(rc, pf_get_cwd (path, &len));
/external/bluetooth/bluedroid/stack/avdt/
H A Davdt_l2c.c181 tBTM_STATUS rc; local
206 rc = btm_sec_mx_access_request (bd_addr, AVDT_PSM,
210 if(rc == BTM_CMD_STARTED)
/external/bluetooth/bluedroid/utils/src/
H A Dbt_utils.c121 int rc = 0; local
131 rc = set_sched_policy(tid, SP_AUDIO_SYS);
136 if (rc) {
/external/chromium_org/pdf/
H A Dcontrol.h30 virtual void Invalidate(uint32 control_id, const pp::Rect& rc) = 0;
40 virtual bool Create(uint32 id, const pp::Rect& rc,
43 virtual void Paint(pp::ImageData* image_data, const pp::Rect& rc) {} argument
55 virtual void SetRect(const pp::Rect& rc, bool invalidate);
/external/chromium_org/sandbox/win/src/
H A Dhandle_closer.cc117 ResultCode rc = target->TransferVariable("g_handles_to_close", local
121 return (SBOX_ALL_OK == rc);

Completed in 429 milliseconds

1234567891011>>