Searched defs:NULL (Results 1 - 25 of 37) sorted by relevance

12

/frameworks/wilhelm/src/
H A Dhandlers.c22 #define NULL 0 macro
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DTargetFragment.h24 explicit TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL) argument
/frameworks/av/include/media/
H A DDataSource.h55 virtual sp<DecryptHandle> DrmInitialization(const char * /*mime*/ = NULL) { argument
56 return NULL;
H A DLinearMap.h226 T findX(T y, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const { argument
233 T findY(T x, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const { argument
304 if (method != NULL) {
321 if (method != NULL) {
338 if (method != NULL) {
347 if (method != NULL) {
/frameworks/av/media/libmediaextractor/include/media/
H A DDataSource.h55 virtual sp<DecryptHandle> DrmInitialization(const char * /*mime*/ = NULL) { argument
56 return NULL;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCamera2Heap.h30 const char *name = NULL) :
29 Camera2Heap(size_t buf_size, uint_t num_buffers = 1, const char *name = NULL) argument
/frameworks/base/core/java/android/util/
H A DBackupUtils.java29 public static final int NULL = 0; field in class:BackupUtils
51 out.writeByte(NULL);
H A DJsonToken.java74 NULL, enum constant in enum:JsonToken
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dgsm_amr_typedefs.h127 #ifndef NULL
128 #define NULL 0 macro
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h57 virtual sp<DecryptHandle> DrmInitialization(const char *mime = NULL) { argument
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpv_amr_wb_type_defs.h164 #ifndef NULL
165 #define NULL 0 macro
/frameworks/native/libs/sensor/
H A DSensorEventQueue.cpp40 : mSensorEventConnection(connection), mRecBuffer(NULL), mAvailable(0), mConsumed(0),
87 mLooper->addFd(getFd(), getFd(), ALOOPER_EVENT_INPUT, NULL, NULL); local
100 result = looper->pollOnce(-1, NULL, &events, NULL);
/frameworks/av/media/libmedia/include/media/
H A DLinearMap.h226 T findX(T y, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const { argument
233 T findY(T x, FindMethod *method = NULL, double extrapolation = 0.0, T startValue = 0) const { argument
304 if (method != NULL) {
321 if (method != NULL) {
338 if (method != NULL) {
347 if (method != NULL) {
/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoType.h144 #ifndef NULL
146 #define NULL 0 macro
148 #define NULL ((void *)0) macro
/frameworks/av/media/libstagefright/codecs/mp3dec/test/
H A Dmp3reader.cpp42 uint32_t *out_sampling_rate = NULL, uint32_t *out_channels = NULL ,
43 uint32_t *out_bitrate = NULL, uint32_t *out_num_samples = NULL) {
338 if (out_header != NULL) {
351 Mp3Reader::Mp3Reader() : mFp(NULL) {
359 if (mFp == NULL) return false;
392 header, &frame_size, &sample_rate, NULL /*out_channels*/,
399 if (!resync(mFp, mFixedHeader, &pos, NULL /*out_header*/)) {
420 assert(mFp != NULL);
40 parseHeader( uint32_t header, size_t *frame_size, uint32_t *out_sampling_rate = NULL, uint32_t *out_channels = NULL , uint32_t *out_bitrate = NULL, uint32_t *out_num_samples = NULL) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DInputBindResult.java291 public static final InputBindResult NULL = error(ResultCode.ERROR_NULL); field in class:InputBindResult
/frameworks/base/core/jni/
H A Dandroid_media_JetPlayer.cpp56 jetPlayerEventCallback(int what, int arg1=0, int arg2=0, void* javaTarget = NULL) argument
108 if (lpJet != NULL) {
133 if (lpJet == NULL) {
142 const char *pathStr = env->GetStringUTFChars(path, NULL);
143 if (pathStr == NULL) { // Out of memory
170 if (lpJet == NULL) {
200 if (lpJet == NULL) {
222 if (lpJet == NULL) {
246 if (lpJet == NULL) {
276 if (lpJet == NULL) {
[all...]
/frameworks/support/room/runtime/src/main/java/androidx/room/
H A DRoomSQLiteQuery.java213 case NULL:
234 mBindingTypes[index] = NULL;
282 Arrays.fill(mBindingTypes, NULL);
289 private static final int NULL = 1; field in class:RoomSQLiteQuery
296 @IntDef({NULL, LONG, DOUBLE, STRING, BLOB})
/frameworks/base/media/jni/
H A Dandroid_media_MediaSync.cpp126 if (sync != NULL) {
129 if (old != NULL) {
143 setMediaSync(env, thiz, NULL);
147 JNIEnv *env, status_t err, const char *msg = NULL) {
162 AString msgWithErrorCode(msg == NULL ? "" : msg);
175 if (sync == NULL) {
181 if (jsurface != NULL) {
183 if (surface != NULL) {
208 if (sync == NULL) {
214 if (jaudioTrack != NULL) {
146 throwExceptionAsNecessary( JNIEnv *env, status_t err, const char *msg = NULL) argument
[all...]
/frameworks/av/media/libstagefright/
H A DFrameDecoder.cpp56 iccData = NULL;
82 if (heap == NULL) {
84 return NULL;
87 if (frameMem == NULL) {
89 return NULL;
99 uint32_t *type = NULL, const void **data = NULL, size_t *size = NULL) {
156 return NULL;
162 return NULL;
97 findThumbnailInfo( const sp<MetaData> &trackMeta, int32_t *width, int32_t *height, uint32_t *type = NULL, const void **data = NULL, size_t *size = NULL) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DMagnifier.java261 SurfaceInfo validMainWindowSurface = SurfaceInfo.NULL;
276 SurfaceInfo validSurfaceViewSurface = SurfaceInfo.NULL;
288 mParentSurface = validMainWindowSurface != SurfaceInfo.NULL
402 public static final SurfaceInfo NULL = new SurfaceInfo(null, 0, 0, false); field in class:Magnifier.SurfaceInfo
/frameworks/base/core/java/android/net/
H A DUri.java132 public static final Uri EMPTY = new HierarchicalUri(null, Part.NULL,
133 PathPart.EMPTY, Part.NULL, Part.NULL);
472 "file", Part.EMPTY, path, Part.NULL, Part.NULL);
867 this.fragment = fragment == null ? Part.NULL : fragment;
1176 this.path = path == null ? PathPart.NULL : path;
1553 if (path == null || path == PathPart.NULL) {
1570 || (authority != null && authority != Part.NULL);
2025 static final Part NULL field in class:Uri.Part
2130 static final PathPart NULL = new PathPart(null, null); field in class:Uri.PathPart
[all...]
/frameworks/native/libs/binder/tests/
H A DbinderLibTest.cpp91 NULL
126 wait(NULL);
148 ASSERT_TRUE(m_server != NULL);
158 if (m_server != NULL) {
195 EXPECT_FALSE(binder != NULL);
197 EXPECT_TRUE(binder != NULL);
205 sp<IBinder> addServer(int32_t *idPtr = NULL) argument
210 sp<IBinder> addPollServer(int32_t *idPtr = NULL) argument
277 pthread_mutex_init(&m_waitMutex, NULL);
278 pthread_cond_init(&m_waitCond, NULL);
[all...]
/frameworks/av/camera/
H A DCameraParameters.cpp298 char **endptr = NULL)
491 if (supportedPreviewFormats == NULL) {
506 fmt = strtok_r(NULL, ",", &savePtr);
297 parse_pair(const char *str, int *first, int *second, char delim, char **endptr = NULL) argument
/frameworks/av/media/libaaudio/examples/loopback/src/
H A DLoopbackAnalyzer.h705 double calculateMagnitude(double *phasePtr = NULL) { argument
712 if( phasePtr != NULL )

Completed in 718 milliseconds

12