Searched defs:found (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dfile_wrapper_input.cpp36 size_t found = fread((char*) buffer, 1, wanted, _file); local
40 return found;
H A Din_memory_wrapper_input.cpp30 size_t found = 0; local
36 while (found < wanted) {
38 return found;
40 buffer[found++] = _buffer[_pos++];
42 return found;
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Ddyn_bits.c388 Flag found = 0; local
423 found = 0;
429 found = 0;
436 found = 1;
457 for (m = i + 1; (m < sectionData->noOfSections) && (found == 0); m++) {
465 found = 1;
485 if (found == 0) {
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp200 int found = 0; local
201 for (int i = 0; !found && i < tagLength; ++i) {
202 found = (tag == tagValues[i]);
205 if (found) {
/frameworks/base/media/mca/filterfw/jni/
H A Djni_util.h154 const bool found = iter != objects_.end(); local
155 if (found) {
160 return found;
/frameworks/compile/libbcc/lib/Support/
H A Dsha1.c331 int found = 0; local
355 found = 1;
393 return found;
421 int found = 0; local
497 found |= verifyfile(s);
507 found = 1;
517 if (!found)
522 "No SHA1 lines found in %s\n",
/frameworks/rs/
H A DrsScriptGroup.cpp155 bool found = false; local
158 found = true;
162 if (!found) {
169 bool found = false; local
172 found = true;
176 if (!found) {
267 rsAssert(!"ScriptGroup:setInput kid not found");
281 rsAssert(!"ScriptGroup:setOutput kid not found");
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_dpb.c903 HANTRO_NOK failure, no short-term reference frame found that
1124 to be found is identified by picNum and isShortTerm flag.
1128 -1 if the specified picture was not found in the buffer
1138 u32 found = HANTRO_FALSE; local
1144 while (i < dpb->maxRefFrames && !found)
1148 found = HANTRO_TRUE;
1156 while (i < dpb->maxRefFrames && !found)
1160 found = HANTRO_TRUE;
1166 if (found)
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c276 int found = 0; local
431 ALOGV("EffectGetSubEffects: effect found in the list");
738 // 1 HW and 1 SW sub effect found. Set the offload flag in the Proxy desc
757 int found = 0; local
763 while (e != NULL && !found) {
771 found = 1;
778 if (!found) {
779 ALOGV("findSubEffect() effect not found");
782 ALOGV("findSubEffect() found effect: %s in lib %s", d->name, l->name);
853 int found local
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp166 bool found = false; local
174 found = true;
179 if (!found) {
845 bool found = false; local
858 found = true;
865 if (!found) {
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp1025 bool found = false; local
1028 found = true;
1035 if (!found) {
H A DMediaCodec.cpp189 bool found = response->findObject("input-surface", &obj); local
190 CHECK(found);
H A DACodec.cpp1631 bool found = false; local
1651 found = true;
1657 found = true;
1664 found = true;
1671 if (!found) {
H A DOMXCodec.cpp652 bool found = false; local
676 found = true;
688 if (!found) {
692 CODEC_LOGV("found a match.");
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp1030 bool found = false; local
1036 found = true;
1041 if (!found) {
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp991 bool found = false; local
995 found = true;
1001 if (!found) {
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp910 bool found = false; local
925 found = true;
939 if (found)
980 bool found = false; local
995 found = true;
1009 if (found)
/frameworks/native/cmds/atrace/
H A Datrace.cpp435 bool found = funcList.find(fancyFunc.string(), 0) >= 0; local
436 if (!found || func[0] == '\0') {
/frameworks/native/libs/gui/
H A DBufferQueue.cpp276 int found = -1; local
306 found = INVALID_BUFFER_SLOT;
324 if ((found < 0) ||
325 mSlots[i].mFrameNumber < mSlots[found].mFrameNumber) {
326 found = i;
357 // If no buffer is found, wait for a buffer to be released or for
359 tryAgain = found == INVALID_BUFFER_SLOT;
376 if (found == INVALID_BUFFER_SLOT) {
382 const int buf = found;
383 *outBuf = found;
[all...]
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp428 const Behavior* found = NULL; local
431 found = behavior;
434 if (found) {
436 *outMetaState = found->metaState;
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp951 bool found = false; local
964 if (addr) found = true;
967 if (found) {
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp268 bool found = false; local
273 found = true;
277 if (!found) {
304 bool found = false; local
309 found = true;
313 if (!found) {
330 bool found = false; local
335 found = true;
339 if (!found) {
351 bool found local
377 bool found = false; local
549 bool found = false; local
[all...]
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp919 bool found = false; local
935 found = true;
957 if (found) {
959 ALOGD("Expected file not found: '%s'\n", path.string());
966 * Either it wasn't found on disk or on the cached view of the disk.
1262 * Returns "false" if we found nothing to contribute.
1289 //printf("+++ not found in cache: dir '%s'\n", (const char*) path);
1450 * Returns "false" if we found nothing to contribute.
1572 * Merge what we found in this directory with what we found i
[all...]
/frameworks/base/tools/aapt/
H A DImages.cpp211 bool found = false; local
219 found = true;
243 if (required && !found) {
244 *outError = "No marked region found along edge";
260 bool found = false; local
268 found = true;
292 if (required && !found) {
293 *outError = "No marked region found along edge";
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp481 ALOGE("no playback thread found for output handle %d", output);
610 ALOGW("latency(): no playback thread found for output handle %d", output);
1912 ALOGW_IF(caller != getpid_cached, "session id %d not found for pid %d", audioSession, caller);
1946 bool found = false; local
1952 found = true;
1956 if (!found) {
2132 bool found = false; local
2146 // If matching type found save effect descriptor. If the session is
2149 found = true;
2157 if (!found) {
[all...]

Completed in 2235 milliseconds

12