Searched refs:NULL (Results 376 - 400 of 5974) sorted by relevance

<<11121314151617181920>>

/haiku/src/add-ons/kernel/file_systems/bfs/
H A DAttribute.cpp25 fSmall(NULL),
26 fAttribute(NULL),
27 fName(NULL)
36 fSmall(NULL),
37 fAttribute(NULL),
38 fName(NULL)
53 return (fSmall != NULL || fAttribute != NULL) ? B_OK : B_NO_INIT;
91 if (fSmall != NULL)
106 if (fSmall != NULL) {
[all...]
/haiku/src/tests/system/libroot/posix/
H A Dthread_local_test.cpp41 return NULL;
50 srand(time(NULL));
54 pthread_create(&ids[i], NULL, threadFn, &short_ids[i]);
58 pthread_join(ids[i], NULL);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_ageq.c84 m->m_nextpkt = NULL;
96 for (; m != NULL; m = next) {
112 if (aq->aq_tail == NULL) {
120 m->m_nextpkt = NULL;
143 ieee80211_ageq_mfree(ieee80211_ageq_remove(aq, NULL));
172 while ((m = aq->aq_head) != NULL && M_AGE_GET(m) < quanta) {
173 if ((aq->aq_head = m->m_nextpkt) == NULL)
174 aq->aq_tail = NULL;
181 if (m != NULL)
185 *phead = NULL;
[all...]
/haiku/src/system/libroot/os/arch/riscv64/
H A Dthread.cpp15 if (name == NULL)
/haiku/src/preferences/backgrounds/
H A DImageFilePanel.h39 BMessenger* target = NULL,
40 const entry_ref* startDirectory = NULL,
43 BMessage* message = NULL,
44 BRefFilter* filter = NULL,
/haiku/src/add-ons/kernel/network/dns_resolver/server/
H A Dmain.cpp31 uint32 addrsSize = ai == NULL ? 0 : sizeof(addrinfo);
36 while (current != NULL) {
37 if (current->ai_canonname != NULL)
39 if (current->ai_addr != NULL) {
45 if (current->ai_next != NULL)
52 if (reply == NULL)
62 while (current != NULL) {
65 if (current->ai_canonname != NULL) {
71 if (current->ai_addr != NULL) {
84 if (next != NULL)
[all...]
/haiku/src/system/libroot/os/arch/arm/
H A Dthread.c21 if (name == NULL)
/haiku/src/system/libroot/os/arch/arm64/
H A Dthread.c15 if (name == NULL)
/haiku/src/system/libroot/posix/
H A Dspawn.cpp67 if (newactions == NULL)
81 if (actions == NULL)
94 struct _posix_spawn_file_actions* actions = _actions != NULL ? *_actions : NULL;
96 if (actions == NULL)
118 struct _posix_spawn_file_actions* actions = _actions != NULL ? *_actions : NULL;
120 if (actions == NULL)
127 if (npath == NULL)
150 struct _posix_spawn_file_actions* actions = _actions != NULL
[all...]
/haiku/src/add-ons/kernel/bus_managers/ata/
H A DATAModule.cpp13 scsi_for_sim_interface *gSCSIModule = NULL;
14 device_manager_info *gDeviceManager = NULL;
21 if (channel == NULL)
48 if (channel->Bus() != NULL) {
50 channel->SetBus(NULL);
68 if (channel->Bus() == NULL) {
83 if (channel->Bus() == NULL)
95 if (channel->Bus() == NULL)
107 if (channel->Bus() == NULL)
119 if (channel->Bus() == NULL)
[all...]
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DStartTeamWindow.cpp30 fGuideText(NULL),
31 fTeamTextControl(NULL),
32 fArgumentsTextControl(NULL),
33 fBrowseTeamButton(NULL),
34 fBrowseTeamPanel(NULL),
35 fStartButton(NULL),
36 fCancelButton(NULL),
69 fTeamTextControl = new BTextControl("Path: ", NULL, NULL);
70 fArgumentsTextControl = new BTextControl("Arguments: ", NULL, NUL
[all...]
/haiku/src/system/kernel/device_manager/
H A DAbstractModuleDevice.cpp15 fNode(NULL),
17 fDeviceModule(NULL),
18 fDeviceData(NULL)
31 return Module()->select != NULL;
38 return Module()->deselect != NULL;
45 return Module()->read != NULL;
52 return Module()->write != NULL;
59 return Module()->io != NULL;
92 if (Module()->read == NULL) {
93 if (Module()->io == NULL)
[all...]
/haiku/src/system/libnetwork/netresolv/net/
H A Dsethostent.c118 *hf = NULL;
131 _DIAGASSERT(rv != NULL);
140 if (res == NULL)
145 hp = NULL;
146 if (hp == NULL)
153 if (hp == NULL) {
170 _DIAGASSERT(name != NULL);
172 hf = NULL;
174 if (hf == NULL) {
177 return NULL;
[all...]
/haiku/src/kits/interface/
H A DMenuItem.cpp37 NULL,
39 NULL, NULL,
40 NULL, /* B_END */
41 NULL, /* B_INSERT */
42 NULL, NULL,
46 NULL, /* B_PAGE_UP */
47 NULL, /* B_PAGE_DOWN */
48 NULL, NUL
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/
H A DModule.cpp29 device_manager_info* gDeviceManager = NULL;
30 pci_module_info* gPCIManager = NULL;
31 dpc_module_info* gDPC = NULL;
66 NULL, NULL);
74 void* counter = NULL;
99 { NULL }
103 char* hid = NULL;
104 char* cidList[11] = { NULL };
105 char* uid = NULL;
[all...]
/haiku/headers/private/shared/
H A Dpci-utils.h17 PCI_CLASSCODETABLE *foundItem = NULL;
47 *venShort = PciVenTable[i].VenShort[0] ? PciVenTable[i].VenShort : NULL;
48 *venFull = NULL;
50 *venShort = PciVenTable[i].VenShort && PciVenTable[i].VenShort[0] ? PciVenTable[i].VenShort : NULL;
51 *venFull = PciVenTable[i].VenFull && PciVenTable[i].VenFull[0] ? PciVenTable[i].VenFull : NULL;
56 *venShort = NULL;
57 *venFull = NULL;
66 *devShort = NULL;
67 *devFull = NULL;
72 *devShort = PciDevTable[i].ChipDesc && PciDevTable[i].ChipDesc[0] ? PciDevTable[i].ChipDesc : NULL;
[all...]
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofdopen.c70 return NULL;
98 return NULL;
104 return NULL;
128 return NULL;
133 if (new_f == NULL)
134 return NULL;
154 new_f->fp.vtable = NULL;
156 if (INTUSE(_IO_file_attach) ((_IO_FILE *) &new_f->fp, fd) == NULL)
158 INTUSE(_IO_setb) (&new_f->fp.file, NULL, NULL,
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DTransaction.cpp40 fJournal(NULL),
41 fParent(NULL)
48 fJournal(NULL),
49 fParent(NULL)
68 if (fJournal == NULL)
73 fJournal = NULL;
88 fJournal = NULL;
107 return fJournal != NULL;
114 return fParent != NULL;
130 if (block == NULL)
[all...]
/haiku/src/bin/
H A Dlogger.cpp44 { NULL, DEFAULT_PRIORITY },
61 { NULL, DEFAULT_FACILITY },
69 for (i = 0; mappings[i].name != NULL; i++) {
85 if (end == NULL) {
100 if (priority == NULL) {
134 const char* tag = NULL;
163 if (tag == NULL && passwd != NULL)
174 char* buffer = NULL;
181 if (buffer == NULL) {
[all...]
/haiku/headers/os/interface/
H A DStatusBar.h16 const char* label = NULL,
17 const char* trailingLabel = NULL);
19 const char* label = NULL,
20 const char* trailingLabel = NULL);
62 virtual void Update(float delta, const char* text = NULL,
63 const char* trailingText = NULL);
64 virtual void Reset(const char* label = NULL,
65 const char* trailingLabel = NULL);
66 virtual void SetTo(float value, const char* text = NULL,
67 const char* trailingText = NULL);
[all...]
/haiku/src/kits/debugger/value/value_nodes/
H A DAddressValueNode.cpp29 fChild(NULL)
37 if (fChild != NULL)
56 if (location == NULL)
80 if (value == NULL)
93 if (fChild != NULL)
104 if (baseType != NULL && baseType->Kind() == TYPE_FUNCTION)
114 if (fChild == NULL)
119 if (fContainer != NULL)
129 return fChild != NULL ? 1 : 0;
136 return index == 0 ? fChild : NULL;
[all...]
/haiku/src/apps/debugger/user_interface/gui/expression_eval_window/
H A DExpressionEvaluationWindow.cpp45 fExpressionInput(NULL),
46 fThreadList(NULL),
47 fFrameList(NULL),
48 fVariablesView(NULL),
49 fCloseButton(NULL),
50 fEvaluateButton(NULL),
52 fCurrentLanguage(NULL),
53 fFallbackLanguage(NULL),
55 fSelectedThread(NULL),
56 fSelectedFrame(NULL),
[all...]
/haiku/src/libs/compat/freebsd_network/
H A Dfirmware.c35 if (__haiku_firmware_name_map == NULL)
49 char* fbsdFirmwareNameCopy = NULL;
51 struct firmware* firmware = NULL;
53 char* firmwarePath = NULL;
54 const char* haikuFirmwareName = NULL;
66 if (firmwarePath == NULL)
97 if (fbsdFirmwareNameCopy == NULL)
101 if (firmware == NULL)
105 if (firmware->data == NULL)
131 return NULL;
[all...]
H A Dfbsd_kern_mbuf.c44 struct mbuf *mb, *nm = NULL, *mtail = NULL;
52 if ((flags & M_PKTHDR) && m != NULL)
68 if (mb == NULL) {
69 if (nm != NULL)
71 return (NULL);
76 if (mtail != NULL)
87 if (m != NULL) {
88 for (mtail = m; mtail->m_next != NULL; mtail = mtail->m_next)
109 * to the provided freef routine (may be NULL)
[all...]
/haiku/src/preferences/repositories/
H A DTaskTimer.cpp29 fMessageRunner(NULL),
31 fTimeoutAlert(NULL),
70 fMessageRunner = NULL;
81 NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);
101 fTimeoutAlert = NULL;
132 if (fMessageRunner == NULL) {
147 if (fMessageRunner != NULL)
155 fTimeoutAlert = NULL;
163 BAlert* newAlert = new BAlert("timeout", text, kOKLabel, NULL, NULL,
[all...]

Completed in 156 milliseconds

<<11121314151617181920>>