Searched refs:file (Results 1 - 25 of 339) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/
H A Dassert.c5 * you may not use this file except in compliance with the License.
22 void __assert(const char *file, int line, const char *failedexpr) argument
24 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
28 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
30 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
31 failedexpr, file, line, func);
H A Dlocks.c5 * you may not use this file except in compliance with the License.
34 void object_lock_exclusive_(IObject *thiz, const char *file, int line) argument
54 SL_LOGE("%s:%d: recursive lock detected", file, line);
57 SL_LOGE("%s:%d: pthread_mutex_lock_timeout_np returned %d", file, line, ok);
74 " (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
94 " %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
98 " state by pthread %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(),
104 thiz->mFile = file;
122 void object_unlock_exclusive_(IObject *thiz, const char *file, int line) argument
128 thiz->mFile = file;
149 object_unlock_exclusive_attributes_(IObject *thiz, unsigned attributes, const char *file, int line) argument
275 object_cond_wait_(IObject *thiz, const char *file, int line) argument
[all...]
H A Dlocks.h5 * you may not use this file except in compliance with the License.
17 /** \file locks.h Mutual exclusion and condition variables */
20 extern void object_lock_exclusive_(IObject *thiz, const char *file, int line);
21 extern void object_unlock_exclusive_(IObject *thiz, const char *file, int line);
23 const char *file, int line);
24 extern void object_cond_wait_(IObject *thiz, const char *file, int line);
/frameworks/wilhelm/tests/
H A DAndroid.mk26 $(foreach file,$(test_src_files), \
31 $(eval LOCAL_SRC_FILES := $(file)) \
/frameworks/wilhelm/tests/native-media/jni/
H A Dnative-media-jni.c5 * you may not use this file except in compliance with the License.
66 // handle of the file to play
67 FILE *file; variable
69 // has the app reached the end of the file
120 rewind(file);
193 nbRead = fread(pBufferData, BUFFER_SIZE, 1, file);
301 nbRead = fread(dataCache, BUFFER_SIZE, NB_BUFFERS, file);
349 // open the file to play
350 file = fopen(utf8, "rb");
351 if (file
[all...]
/frameworks/wilhelm/tests/sandbox/streamSource/
H A DslesTestPlayStream.cpp5 * you may not use this file except in compliance with the License.
44 FILE *file; variable
45 /* Has the app reached the end of the file */
87 // to play a .ts file, but rather shows more ways to exercise the API
108 size_t nbRead = fread((void*)dataCache, 1, BUFFER_SIZE*(NB_BUFFERS/2), file);
150 size_t nbRead = fread((void*)pBufferData, 1, BUFFER_SIZE, file);
208 file = fopen(path, "rb");
297 if (fread(dataCache, 1, BUFFER_SIZE * NB_BUFFERS, file) <= 0) {
311 if (fread(dataCache, 1, BUFFER_SIZE * 1, file) <= 0) {
375 fclose(file);
[all...]
/frameworks/testing/androidtestlib/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/testing/androidtestlib/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/testing/uiautomator/samples/SkeletonTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/renderscript/v8/rs_support/
H A DrsContext.cpp5 * you may not use this file except in compliance with the License.
209 if (rsc->watchdog.command && rsc->watchdog.file) {
211 rsc->watchdog.command, rsc->watchdog.line, rsc->watchdog.file);
H A DrsContext.h5 * you may not use this file except in compliance with the License.
135 const char *file; member in struct:android::renderscript::Context::__anon1573
/frameworks/support/v13/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v4/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java5 * you may not use this file except in compliance with the License.
91 for (File file : files) {
92 file.delete();
111 File file = getFileForKey(key);
114 cis = new CountingInputStream(new FileInputStream(file));
116 byte[] data = streamToBytes(cis, (int) (file.length() - cis.bytesRead));
119 VolleyLog.d("%s: %s", file.getAbsolutePath(), e.toString());
143 for (File file : files) {
146 fis = new FileInputStream(file);
148 entry.size = file
[all...]
/frameworks/support/volley/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/rs/
H A DrsContext.cpp5 * you may not use this file except in compliance with the License.
397 if (rsc->watchdog.command && rsc->watchdog.file) {
399 rsc->watchdog.command, rsc->watchdog.line, rsc->watchdog.file);
H A DrsContext.h5 * you may not use this file except in compliance with the License.
195 const char *file; member in struct:android::renderscript::Context::__anon1541
199 void setWatchdogGL(const char *cmd, uint32_t line, const char *file) const {
201 watchdog.file = file;
H A DrsFileA3D.cpp6 * you may not use this file except in compliance with the License.
147 // We should know enough to read the file in at this point.
158 ALOGV("file open 1");
194 ALOGV("file open size = %lli", mDataSize);
196 // We should know enough to read the file in at this point.
309 ALOGE("Couldn't open the file for writing\n");
336 // Write our magic string so we know we are reading the right file
347 // Now write the size of the data part of the file for easier parsing later
356 ALOGE("Couldn't close file\n");
382 RsObjectBase rsaFileA3DGetEntryByIndex(RsContext con, uint32_t index, RsFile file) { argument
396 rsaFileA3DGetNumIndexEntries(RsContext con, int32_t *numEntries, RsFile file) argument
406 rsaFileA3DGetIndexEntries(RsContext con, RsFileIndexEntry *fileEntries, uint32_t numEntries, RsFile file) argument
[all...]
/frameworks/opt/vcard/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/opt/vcard/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/opt/telephony/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/opt/photoviewer/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/opt/photoviewer/sample/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/opt/mailcommon/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.

Completed in 335 milliseconds

1234567891011>>