Searched defs:NULL (Results 1 - 25 of 29) sorted by last modified time

12

/frameworks/wilhelm/src/
H A Dhandlers.c22 #define NULL 0 macro
/frameworks/native/include/utils/
H A DUniquePtr.h28 #include <cstdlib> // For NULL.
61 explicit UniquePtr(T* ptr = NULL) : mPtr(ptr) { argument
77 mPtr = NULL;
84 void reset(T* ptr = NULL) { argument
109 explicit UniquePtr(T* ptr = NULL) : mPtr(ptr) { argument
123 mPtr = NULL;
127 void reset(T* ptr = NULL) { argument
/frameworks/native/libs/gui/
H A DSensorEventQueue.cpp72 mLooper->addFd(getFd(), getFd(), ALOOPER_EVENT_INPUT, NULL, NULL); local
85 result = looper->pollOnce(-1, NULL, &events, NULL);
/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/compile/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/compile/mclinker/include/mcld/LD/
H A DTargetFragment.h30 TargetFragment(Fragment::Type pKind, SectionData* pSD = NULL) argument
/frameworks/base/tools/aapt/
H A DResource.cpp104 if (mGroup != NULL && mGroupPos < mGroup->getFiles().size()) {
184 if (group != NULL) {
186 if (file != NULL) {
192 return NULL;
195 NULL, String8());
234 ssize_t nameIndex = block.indexOfAttribute(NULL, "package");
302 NULL, local
318 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL);
464 if ((strIdx=table.resolveReference(&value, 0x10000000, NULL, &specFlags)) < 0) {
474 if (pool != NULL) {
1578 getAttributeComment(const sp<AaptAssets>& assets, const String8& name, String16* outTypeComment = NULL) argument
[all...]
H A DResourceTable.cpp24 if (root == NULL) {
38 if (root == NULL) {
52 root->removeWhitespace(true, NULL);
54 root->removeWhitespace(false, NULL);
153 { enumArray, sizeof(enumArray)/2, ResTable_map::TYPE_ENUM, NULL },
154 { flagsArray, sizeof(flagsArray)/2, ResTable_map::TYPE_FLAGS, NULL },
155 { NULL, 0, 0, NULL }
161 { suggestedArray, sizeof(suggestedArray)/2, ResTable_map::L10N_SUGGESTED, NULL },
162 { NULL,
167 parse_flags(const char16_t* str, size_t len, const flag_entry* flags, bool* outError = NULL) argument
297 compileAttribute(const sp<AaptFile>& in, ResXMLTree& block, const String16& myPackage, ResourceTable* outTable, String16* outIdent = NULL, bool inStyleable = false) argument
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp190 return NULL;
217 NotifyConfigurationChangedArgs* outEventArgs = NULL) {
227 NotifyDeviceResetArgs* outEventArgs = NULL) {
236 void assertNotifyKeyWasCalled(NotifyKeyArgs* outEventArgs = NULL) { argument
250 void assertNotifyMotionWasCalled(NotifyMotionArgs* outEventArgs = NULL) { argument
264 void assertNotifySwitchWasCalled(NotifySwitchArgs* outEventArgs = NULL) { argument
462 return index >= 0 ? mDevices.valueAt(index) : NULL;
539 return NULL;
670 return NULL;
818 void assertProcessWasCalled(RawEvent* outLastEvent = NULL) { argument
216 assertNotifyConfigurationChangedWasCalled( NotifyConfigurationChangedArgs* outEventArgs = NULL) argument
226 assertNotifyDeviceResetWasCalled( NotifyDeviceResetArgs* outEventArgs = NULL) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp71 : mClass(NULL),
72 mObject(NULL) {
74 CHECK(clazz != NULL);
95 return mCodec != NULL ? OK : NO_INIT;
99 if (mCodec != NULL) {
107 mObject = NULL;
109 mClass = NULL;
118 if (surfaceTexture != NULL) {
218 CHECK(byteBufferClass != NULL);
225 CHECK(orderID != NULL);
317 throwExceptionAsNecessary( JNIEnv *env, status_t err, const char *msg = NULL) argument
[all...]
/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/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/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/services/camera/libcameraservice/camera2/
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/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/core/java/android/util/
H A DJsonToken.java74 NULL, enum constant in enum:JsonToken
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp177 static AndroidRuntime* gCurRuntime = NULL;
179 static void doThrow(JNIEnv* env, const char* exc, const char* msg = NULL) argument
224 /*static*/ JavaVM* AndroidRuntime::mJavaVM = NULL;
245 assert(gCurRuntime == NULL); // one per process
272 if (clazz == NULL || env == NULL) {
277 if (methodId == NULL) {
290 strArray = env->NewObjectArray(argc, stringClass, NULL);
378 if (sigprocmask(SIG_BLOCK, &mask, NULL) != 0)
460 char* stackTraceFile = NULL;
[all...]
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 ) {
141 const char *pathStr = env->GetStringUTFChars(path, NULL);
142 if (pathStr == NULL) { // Out of memory
169 if (lpJet == NULL ) {
198 if (lpJet == NULL ) {
219 if (lpJet == NULL ) {
242 if (lpJet == NULL ) {
271 if (lpJet == NULL ) {
[all...]
/frameworks/av/camera/
H A DCameraParameters.cpp292 char **endptr = NULL)
291 parse_pair(const char *str, int *first, int *second, char delim, char **endptr = NULL) argument
/frameworks/av/include/media/stagefright/
H A DDataSource.h47 const KeyedVector<String8, String8> *headers = NULL);
84 virtual sp<DecryptHandle> DrmInitialization(const char *mime = NULL) { argument
85 return NULL;
/frameworks/av/libvideoeditor/vss/common/inc/
H A DM4VIFI_FiltersAPI.h72 #ifndef NULL
73 #define NULL 0 macro
/frameworks/av/libvideoeditor/vss/video_filters/src/
H A DM4VFL_transition.c271 #ifndef NULL
272 #define NULL 0 macro
/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

Completed in 329 milliseconds

12