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

1234567891011>>

/frameworks/wilhelm/src/
H A Dassert.cpp5 * you may not use this file except in compliance with the License.
24 void __assert(const char *file, int line, const char *failedexpr) argument
26 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
32 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
33 failedexpr, file, line, func);
H A Dlocks.cpp5 * you may not use this file except in compliance with the License.
44 void object_lock_exclusive_(IObject *thiz, const char *file, int line) argument
67 SL_LOGE("%s:%d: recursive lock detected", file, line);
70 SL_LOGE("%s:%d: pthread_mutex_lock_timeout_np returned %d", file, line, ok);
87 " (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
107 " %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
111 " state by pthread %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(),
117 thiz->mFile = file;
135 void object_unlock_exclusive_(IObject *thiz, const char *file, int line) argument
141 thiz->mFile = file;
162 object_unlock_exclusive_attributes_(IObject *thiz, unsigned attributes, const char *file, int line) argument
288 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.
19 /** \file locks.h Mutual exclusion and condition variables */
22 extern void object_lock_exclusive_(IObject *thiz, const char *file, int line);
23 extern void object_unlock_exclusive_(IObject *thiz, const char *file, int line);
25 const char *file, int line);
26 extern void object_cond_wait_(IObject *thiz, const char *file, int line);
/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);
205 file = fopen(path, "rb");
294 if (fread(dataCache, 1, BUFFER_SIZE * NB_BUFFERS, file) <= 0) {
308 if (fread(dataCache, 1, BUFFER_SIZE * 1, file) <= 0) {
372 fclose(file);
[all...]
/frameworks/support/v17/leanback/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
H A Dgeneratev4.py6 # you may not use this file except in compliance with the License.
34 file = open('java/android/support/v17/leanback/app/{}Fragment.java'.format(w), 'r') variable
38 outfile.write("/* This file is auto-generated from {}Fragment.java. DO NOT MODIFY. */\n\n".format(w))
40 for line in file:
47 file.close()
57 file = open('java/android/support/v17/leanback/app/{}FragmentTestBase.java'.format(w), 'r') variable
61 outfile.write("/* This file is auto-generated from {}FrgamentTestBase.java. DO NOT MODIFY. */\n\n".format(w))
63 for line in file:
73 file.close()
83 file variable
114 file = open('java/android/support/v17/leanback/app/{}FragmentTestActivity.java'.format(w), 'r') variable
132 file = open('java/android/support/v17/leanback/widget/ParallaxIntEffectTest.java', 'r') variable
152 file = open('java/android/support/v17/leanback/widget/ParallaxIntTest.java', 'r') variable
[all...]
/frameworks/support/v17/preference-leanback/
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/v7/appcompat/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/cardview/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/gridlayout/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/mediarouter/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/palette/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/preference/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/recyclerview/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/v7/recyclerview/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/wear/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
H A DVideoProvider.java5 * you may not use this file except in compliance with the License.
91 File file = new File(rootPath + videoNumber + ".jpg");
92 if (!file.exists()) {
93 makeIcon(width, height, "Jank", file);
95 videoInfo.setImageUri(Uri.fromFile(file));
106 public static void makeIcon(int width, int height, String string, File file) { argument
135 FileOutputStream outputStream = new FileOutputStream(file);
138 Log.e(TAG, "Cannot write image to file: " + file, e);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/
H A Dbuild-local.py20 file = open(inputFile, "a")
21 file.write(newVal + "\n")
29 file = open(leanback_maven_metadata_path, "r")
30 for line in file:
H A Dbuild-release.py20 file = open(inputFile, "a")
21 file.write(newVal + "\n")
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.util.List listDirs (java.io.File) java.io.File file java.io. ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
H A DVideoProvider.java5 * you may not use this file except in compliance with the License.
91 File file = new File(rootPath + videoNumber + ".jpg");
92 if (!file.exists()) {
93 makeIcon(width, height, "Jank", file);
95 videoInfo.setImageUri(Uri.fromFile(file));
106 public static void makeIcon(int width, int height, String string, File file) { argument
135 FileOutputStream outputStream = new FileOutputStream(file);
138 Log.e(TAG, "Cannot write image to file: " + file, e);

Completed in 497 milliseconds

1234567891011>>