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

12

/frameworks/wilhelm/src/
H A Dhandlers.c22 #define NULL 0 macro
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DTargetFragment.h28 TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A Dbasetype.h44 #ifndef NULL
46 #define NULL 0 macro
48 #define NULL ((void *)0) macro
/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 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/include/media/stagefright/
H A DDataSource.h47 const KeyedVector<String8, String8> *headers = NULL);
86 virtual sp<DecryptHandle> DrmInitialization(const char *mime = NULL) { argument
87 return NULL;
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpv_amr_wb_type_defs.h164 #ifndef NULL
165 #define NULL 0 macro
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_util.h59 #ifndef NULL
60 #define NULL 0 macro
149 H264SwDecFree((ptr)); (ptr) = NULL; \
/frameworks/av/media/libstagefright/include/
H A DThrottledSource.h57 virtual sp<DecryptHandle> DrmInitialization(const char *mime = NULL) { argument
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c53 if(pUserData == NULL || pUserData->memflag != VO_IMF_USERMEMOPERATOR || pUserData->memData == NULL )
66 *phCodec = NULL;
77 if(NULL == hAacEnc)
86 if(NULL == hAacEnc->intbuf)
115 hAacEnc = NULL;
117 *phCodec = NULL;
167 if(NULL == hCodec || NULL == pInput || NULL
249 NULL, local
[all...]
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DSymbolResolvers.h39 // If pFileName is NULL, it will search symbol in the current process image.
45 { return (mError != NULL); }
78 const SymbolMap *result = NULL;
82 const SymbolMap key = { pName, NULL };
99 return ((result != NULL) ? result->mAddr : NULL);
113 LookupFunctionSymbolResolver(LookupFunctionTy pLookupFunc = NULL, argument
114 ContextTy pContext = NULL)
118 return ((mLookupFunc != NULL) ? mLookupFunc(mContext, pName) : NULL);
[all...]
/frameworks/rs/cpu_ref/linkloader/utils/
H A Dserialize.h69 ArchiveReader(unsigned char const *buf = NULL, size_t size = 0) argument
71 cursor(buf), cursor_base(NULL), good(buf != NULL) {
75 rsl_assert(cursor_base == NULL);
80 rsl_assert(cursor_base != NULL);
83 cursor_base = NULL;
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4VIFI_FiltersAPI.h72 #ifndef NULL
73 #define NULL 0 macro
/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/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...]
H A DAndroidRuntime.cpp182 static AndroidRuntime* gCurRuntime = NULL;
184 static void doThrow(JNIEnv* env, const char* exc, const char* msg = NULL) argument
229 /*static*/ JavaVM* AndroidRuntime::mJavaVM = NULL;
250 assert(gCurRuntime == NULL); // one per process
277 if (clazz == NULL || env == NULL) {
282 if (methodId == NULL) {
295 strArray = env->NewObjectArray(argc, stringClass, NULL);
453 char* stackTraceFile = NULL;
518 opt.extraInfo = NULL;
[all...]
/frameworks/rs/
H A DrsElement.h124 const size_t * lengths = NULL,
125 const uint32_t *asin = NULL) {
121 create(Context *rsc, size_t count, const Element **ein, const char **nin, const size_t * lengths = NULL, const uint32_t *asin = NULL) argument
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dtypedefs.h38 /* Define NULL pointer value */
39 #ifndef NULL
41 #define NULL 0 macro
43 #define NULL ((void *)0) macro
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A Domxtypes.h219 #ifndef NULL
220 #define NULL ((void*)0) macro
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A Domxtypes.h219 #ifndef NULL
220 #define NULL ((void*)0) macro
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
H A Domxtypes.h219 #ifndef NULL
220 #define NULL ((void*)0) macro
/frameworks/av/libvideoeditor/vss/video_filters/src/
H A DM4VFL_transition.c271 #ifndef NULL
272 #define NULL 0 macro
/frameworks/base/core/java/android/net/
H A DUri.java127 public static final Uri EMPTY = new HierarchicalUri(null, Part.NULL,
128 PathPart.EMPTY, Part.NULL, Part.NULL);
449 "file", Part.EMPTY, path, Part.NULL, Part.NULL);
836 this.fragment = fragment == null ? Part.NULL : fragment;
1145 this.path = path == null ? PathPart.NULL : path;
1522 if (path == null || path == PathPart.NULL) {
1539 || (authority != null && authority != Part.NULL);
1993 static final Part NULL field in class:Uri.Part
2098 static final PathPart NULL = new PathPart(null, null); field in class:Uri.PathPart
[all...]
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.h272 bool snapOut = false, bool* clipRequired = NULL);
273 bool quickRejectNoScissor(const Rect& bounds, bool* clipRequired = NULL) { argument
881 * @param positions The x, y positions of individual glyphs (or NULL)
997 void setupDrawMesh(GLvoid* vertices, GLvoid* texCoords = NULL, GLuint vbo = 0);
1048 * NULL, the texture could not be found and/or allocated.

Completed in 2875 milliseconds

12