Searched refs:NULL (Results 451 - 475 of 5975) sorted by relevance

<<11121314151617181920>>

/haiku/src/bin/
H A Dmount.c26 "\tif device is not specified, NULL is passed (for in-memory filesystems)\n",programName);
35 const char *device = NULL;
37 const char *parameter = NULL;
38 const char *fs = NULL;
58 else if (!strcmp(arg, "t") && fs == NULL) {
63 } else if ((!strcmp(arg, "p") || !strcmp(arg, "o")) && parameter == NULL) {
81 if (mountPoint == NULL)
/haiku/src/servers/input/
H A DPathList.cpp52 if (_index != NULL)
65 if (path == NULL)
75 if (entry == NULL || entry->path == NULL || !fPaths.AddItem(entry)) {
109 if (entry == NULL)
110 return NULL;
/haiku/src/system/libroot/posix/signal/
H A Dset_signal_mask.cpp36 if (beosSet != NULL)
41 status_t error = _kern_set_signal_mask(how, beosSet != NULL ? &set : NULL,
42 beosOldSet != NULL ? &oldSet : NULL);
47 if (beosOldSet != NULL)
/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DControlTest.cpp22 : Test(name, NULL),
23 fControl(NULL),
24 fLongTextCheckBox(NULL),
25 fBigFontCheckBox(NULL),
26 fDefaultFont(NULL),
27 fBigFont(NULL)
/haiku/src/apps/activitymonitor/
H A DCircularBuffer.h20 fBuffer(NULL)
32 return fBuffer != NULL ? B_OK : B_NO_MEMORY;
44 if (fBuffer == NULL) {
70 if (index >= (int32)fIn || index < 0 || fBuffer == NULL)
71 return NULL;
84 if (fBuffer != NULL)
/haiku/src/preferences/network/
H A DNetworkProfile.cpp19 fName(NULL)
64 fName = NULL;
87 fName = NULL;
95 if (fName == NULL) {
152 return NULL;
159 return NULL;
/haiku/src/kits/debugger/dwarf/
H A DCfaContext.cpp19 fRuleSet(NULL),
20 fInitialRuleSet(NULL),
46 if (fRuleSet == NULL)
57 if (fInitialRuleSet == NULL)
67 if (ruleSet == NULL || !fRuleSetStack.AddItem(ruleSet)) {
122 if (fInitialRuleSet != NULL)
/haiku/src/kits/debugger/target_host_interface/network/
H A DNetworkTargetHostInterfaceInfo.cpp22 fDescription(NULL)
29 if (fDescription != NULL)
38 if (fDescription == NULL)
44 if (setting == NULL)
51 if (setting == NULL)
98 if (interface == NULL)
/haiku/src/libs/compat/freebsd_network/
H A Dsysinit.c24 SYSINIT(__dummy, 0, 0, NULL, NULL);
25 SYSUNINIT(__dummy, 0, 0, NULL, NULL);
42 if ((*initee)->order != orders[i] || (*initee)->func == NULL)
60 if ((*initee)->order != orders[i] || (*initee)->func == NULL)
/haiku/src/add-ons/network_settings/hostname/
H A DHostnameAddOn.cpp66 fView(NULL)
73 if (fView->Parent() == NULL)
97 if (fView == NULL)
107 return fView != NULL ? fView->Revert() : B_OK;
114 return fView != NULL ? fView->IsRevertable() : false;
140 return NULL;
/haiku/src/tests/system/libroot/posix/
H A Dposix_spawn_pipe_test.c17 char* const argv[] = { "./posix_spawn_pipe_err", NULL };
32 errno = posix_spawn(&pid, "./posix_spawn_pipe_err", &fdops, NULL, argv, NULL);
36 if (cOut == NULL) panic(-1, "cOut");
38 if (cErr == NULL) panic(-1, "cErr");
40 char *buf = NULL;
/haiku/src/tools/locale/
H A DCatalog.cpp19 fCatalogData(NULL)
27 fCatalogData(NULL)
44 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
61 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
78 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
96 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
/haiku/src/system/boot/platform/riscv/
H A Dfdt.cpp29 void* gFdt = NULL;
30 ClintRegs *volatile gClintRegs = NULL;
60 if (prop == NULL)
86 if (uint32* prop = (uint32*)fdt_getprop(fdt, node, "interrupts-extended", NULL)) {
89 if (uint32* prop = (uint32*)fdt_getprop(fdt, node, "interrupts", NULL)) {
103 const char* name = fdt_get_name(fdt, node, NULL);
105 if (uint32* prop = (uint32*)fdt_getprop(fdt, node, "timebase-frequency", NULL))
110 "device_type", NULL);
111 if (device_type != NULL && strcmp(device_type, "memory") == 0) {
113 "reg", NULL)
[all...]
/haiku/src/add-ons/kernel/drivers/display/
H A Ddisplay_adapter.cpp10 device_manager_info *gDeviceManager = NULL;
11 acpi_module_info *gAcpi = NULL;
48 if (device == NULL)
54 || gAcpi->get_handle(NULL, path, &device->acpi_device) != B_OK) {
64 if (gAcpi->evaluate_object(&device->acpi_device, "_DOS", &arguments, NULL,
162 if (gAcpi->get_handle(NULL, path, &handle) != B_OK)
185 || gAcpi->get_handle(NULL, path, &acpiHandle) != B_OK) {
193 if (pkgData == NULL)
196 status_t status = gAcpi->evaluate_object(acpiHandle, "_DOD", NULL, pkgData,
210 acpi_handle child = NULL;
[all...]
/haiku/src/system/libroot/posix/wchar/
H A Dmbrtowc.cpp30 if (ps == NULL) {
35 if (s == NULL)
36 return __mbrtowc(NULL, "", 1, ps);
42 if (backend == NULL) {
46 if (pwc != NULL)
64 if (pwc != NULL)
/haiku/src/system/runtime_loader/
H A Delf.cpp50 static image_t** sPreloadedAddons = NULL;
67 return NULL;
88 if (path == NULL)
93 status_t status = load_image(path, B_LIBRARY_IMAGE, NULL, NULL, NULL, image);
100 if ((*image)->find_undefined_symbol == NULL)
110 preload_images(image_t **image, int32 *_count = NULL) argument
113 if (imagePaths == NULL) {
114 if (_count != NULL)
[all...]
/haiku/src/preferences/filetypes/
H A DIconView.cpp46 if (_data == NULL || _size == NULL)
154 fLarge(NULL),
155 fMini(NULL),
156 fData(NULL),
164 fLarge(NULL),
165 fMini(NULL),
166 fData(NULL),
253 if (fLarge != NULL || force)
255 if (fMini != NULL || forc
1453 SetTarget(const BHandler* handler, const BLooper* looper = NULL) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DIndex.cpp23 fNode(NULL),
24 fName(NULL)
31 if (fNode == NULL)
42 if (fNode == NULL)
47 fNode = NULL;
48 fName = NULL;
72 if (indices == NULL)
78 if (tree == NULL)
90 if (fNode == NULL) {
92 "NULL pointe
[all...]
H A DJournal.h111 fJournal(NULL),
112 fParent(NULL)
119 fJournal(NULL),
120 fParent(NULL)
127 fJournal(NULL),
128 fParent(NULL)
134 if (fJournal != NULL)
139 bool IsStarted() const { return fJournal != NULL; }
144 if (fJournal != NULL) {
147 fJournal = NULL;
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInodeRegular.cpp26 ASSERT(name != NULL);
27 ASSERT(state != NULL);
28 ASSERT(delegationData != NULL);
69 ASSERT(name != NULL);
70 ASSERT(cookie != NULL);
71 ASSERT(data != NULL);
74 cookie->fLocks = NULL;
77 if (state == NULL)
102 ASSERT(cookie != NULL);
108 if (fOpenState == NULL) {
[all...]
/haiku/headers/private/kernel/util/
H A DSplayTree.h55 fRoot(NULL)
67 if (fRoot == NULL) {
69 nodeLink->left = NULL;
70 nodeLink->right = NULL;
86 rootLink->left = NULL;
90 rootLink->right = NULL;
99 if (fRoot == NULL)
100 return NULL;
105 return NULL;
110 if (rootLink->left == NULL) {
[all...]
/haiku/src/kits/device/
H A DJoystick.cpp23 static FILE *sLogFile = NULL;
65 if (fJoystickInfo != NULL) {
80 if (fDevices != NULL) {
89 if (fJoystickData != NULL) {
93 if (variableJoystick == NULL)
118 if (portName == NULL)
121 if (fJoystickInfo == NULL || fJoystickData == NULL)
169 if (variableJoystick == NULL)
226 if (fJoystickInfo == NULL || fJoystickDat
[all...]
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixDatagramEndpoint.cpp27 fTargetEndpoint(NULL),
28 fReceiveFifo(NULL),
32 find_thread(NULL), this);
39 find_thread(NULL), this);
47 find_thread(NULL), this);
57 find_thread(NULL), this);
67 find_thread(NULL), this);
81 find_thread(NULL), this);
103 find_thread(NULL), this);
107 ASSERT(fReceiveFifo == NULL);
[all...]
/haiku/src/servers/app/stackandtile/
H A DStackAndTile.cpp44 fDesktop(NULL),
46 fCurrentSATWindow(NULL)
71 for (Window *window = windows.FirstWindow(); window != NULL;
93 if (sender == NULL)
161 if (currentGroup == NULL)
195 SATGroup* backmostGroup = NULL;
199 if (group == NULL || group == currentGroup)
204 if (currentGroup == NULL) {
206 if (activeWindow != NULL)
215 if (backmostGroup != NULL
[all...]
/haiku/src/kits/media/experimental/
H A DSimpleMediaClient.cpp15 fNotifyHook(NULL),
16 fNotifyCookie(NULL)
63 if (fNotifyHook != NULL) {
74 if (fNotifyHook != NULL) {
85 if (fNotifyHook != NULL) {
97 if (fNotifyHook != NULL) {
119 fProcessHook(NULL),
120 fNotifyHook(NULL),
121 fBufferCookie(NULL)
219 if (fNotifyHook != NULL)
[all...]

Completed in 148 milliseconds

<<11121314151617181920>>