Searched refs:NULL (Results 226 - 250 of 5974) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/file_systems/shared/
H A Dmime_ext_table.c114 { NULL, NULL }
130 *mime = NULL;
132 if (filename == NULL) {
150 if(p->mime == NULL)
/haiku/src/kits/network/libnetapi/
H A DSSL.cpp25 int64 seed = find_thread(NULL) ^ system_time();
31 pthread_mutex_init(&sMutexBuf[i], NULL);
38 CRYPTO_set_id_callback(NULL);
39 CRYPTO_set_locking_callback(NULL);
57 return find_thread(NULL);
/haiku/headers/private/shared/
H A DLRUCache.h25 fOlder(NULL),
26 fNewer(NULL)
34 fOlder(NULL),
35 fNewer(NULL)
59 fNewestNode(NULL),
60 fOldestNode(NULL),
81 if (node != NULL) {
88 if (node == NULL)
105 if (node != NULL) {
121 fNewestNode = NULL;
[all...]
/haiku/src/system/libroot/posix/locale/
H A DLocaleInternal.cpp29 if (locale != NULL && *locale != '\0')
53 locale = NULL;
57 if (locale == NULL || *locale == '\0')
59 if (locale == NULL || *locale == '\0')
62 if (lastLocale != NULL && strcasecmp(locale, lastLocale) != 0)
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetprotobyname_r.c60 _DIAGASSERT(name != NULL);
63 while ((p = getprotoent_r(pr, pd)) != NULL) {
66 for (cp = p->p_aliases; *cp != NULL; cp++)
72 if (pd->fp != NULL) {
74 pd->fp = NULL;
H A Dgetservent_r.c70 sd->line = NULL;
72 sd->cdb_buf = NULL;
75 sd->aliases = NULL;
81 if (sd->cdb != NULL) {
91 if (sd->plainfile != NULL) {
104 sd->cdb = NULL;
111 sd->plainfile = NULL;
130 sd->line = NULL;
136 sd->line = fparseln(sd->plainfile, NULL, NULL, NUL
[all...]
/haiku/src/system/libroot/posix/stdlib/
H A Denv.cpp28 char **environ = NULL;
50 if (sManagedEnviron == NULL)
53 for (i = 0; sManagedEnviron[i] != NULL; i++) {
58 sManagedEnviron = NULL;
67 if (environ == NULL)
82 if (newEnviron == NULL)
85 newEnviron[count] = NULL;
99 if (environ == NULL)
100 return NULL;
102 for (i = 0; environ[i] != NULL;
[all...]
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DTeamsPage.cpp40 if (team == NULL)
73 fTeamsTable(NULL),
74 fTeamsTableModel(NULL),
75 fModel(NULL)
97 fTeamsTable->SetTableModel(NULL);
108 if (fModel != NULL) {
109 fTeamsTable->SetTableModel(NULL);
111 fTeamsTableModel = NULL;
116 if (fModel != NULL) {
128 if (team != NULL)
[all...]
/haiku/src/kits/translation/
H A DFuncTranslator.cpp64 if (_count == NULL || fData.input_formats == NULL)
65 return NULL;
80 if (_count == NULL || fData.output_formats == NULL)
81 return NULL;
97 if (fData.identify_hook == NULL)
108 if (fData.translate_hook == NULL)
119 if (fData.make_config_hook == NULL)
129 if (fData.get_config_message_hook == NULL)
[all...]
/haiku/src/kits/package/solver/
H A DSolverPackageSpecifierList.cpp39 fSpecifiers(NULL)
47 fSpecifiers(NULL)
62 return fSpecifiers == NULL || fSpecifiers->empty();
69 return fSpecifiers != NULL ? fSpecifiers->size() : 0;
76 if (fSpecifiers == NULL || index < 0
78 return NULL;
90 if (fSpecifiers == NULL) {
92 if (fSpecifiers == NULL)
148 fSpecifiers = NULL;
150 if (other.fSpecifiers == NULL)
[all...]
/haiku/headers/os/storage/
H A DPathFinder.h28 BPathFinder(const void* codePointer = NULL,
29 const char* dependency = NULL);
31 const char* dependency = NULL);
33 const char* dependency = NULL);
36 const char* dependency = NULL);
39 status_t SetTo(const void* codePointer = NULL,
40 const char* dependency = NULL);
42 const char* dependency = NULL);
44 const char* dependency = NULL);
46 const char* dependency = NULL);
[all...]
/haiku/src/kits/debugger/debug_info/
H A DFunction.cpp15 fSourceCode(NULL),
24 SetSourceCode(NULL, FUNCTION_SOURCE_NOT_LOADED);
25 if (FirstInstance() != NULL) {
38 if (fSourceCode != NULL)
44 if (fSourceCode != NULL) {
51 instance->SetSourceCode(NULL, FUNCTION_SOURCE_NOT_LOADED);
80 if (firstInstance && SourceFile() != NULL) {
91 if (fInstances.IsEmpty() && instance->SourceFile() != NULL) {
118 SetSourceCode(NULL, FUNCTION_SOURCE_NOT_LOADED);
121 instance->SetSourceCode(NULL, FUNCTION_SOURCE_NOT_LOADE
[all...]
/haiku/src/kits/debugger/jobs/
H A DLoadImageDebugInfoJob.cpp68 fImage->SetImageDebugInfo(NULL, IMAGE_DEBUG_INFO_UNAVAILABLE);
81 if (image->GetImageDebugInfo() != NULL) {
82 if (_imageDebugInfo != NULL) {
91 if (_imageDebugInfo != NULL)
92 *_imageDebugInfo = NULL;
103 if (job == NULL)
108 image->SetImageDebugInfo(NULL, IMAGE_DEBUG_INFO_UNAVAILABLE);
112 image->SetImageDebugInfo(NULL, IMAGE_DEBUG_INFO_LOADING);
114 if (_imageDebugInfo != NULL)
115 *_imageDebugInfo = NULL;
[all...]
/haiku/src/apps/debugger/user_interface/gui/connection_config/config_handlers/
H A DNetworkConnectionConfigView.cpp31 fProtocolField(NULL),
32 fHostInput(NULL),
33 fPortInput(NULL),
34 fSettings(NULL),
35 fHostSetting(NULL),
36 fPortSetting(NULL)
43 if (fSettings != NULL)
65 uint16 port = (uint16)strtoul(fPortInput->Text(), NULL, 10);
93 if (fPortSetting == NULL || fHostSetting == NULL)
[all...]
/haiku/src/libs/compat/freebsd_network/
H A Dmbuf.c53 m->m_next = NULL;
54 m->m_nextpkt = NULL;
87 if (ext_type != NULL)
99 if (memoryBuffer->m_ext.ext_buf == NULL)
137 if (memoryBuffer == NULL)
138 return NULL;
142 return NULL;
154 if (memoryBuffer == NULL)
155 return NULL;
182 return NULL;
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4_address.cpp38 bool replaceWithZeros = false, const sockaddr *mask = NULL)
42 if (*to == NULL)
49 if (from == NULL)
51 if (from->sa_len == 0 || (mask != NULL && mask->sa_len == 0))
57 if (*to == NULL)
62 if (mask != NULL) {
74 \return B_BAD_VALUE if \a address is NULL or if any of \a address or \a mask
81 if (address == NULL || address->sa_len == 0 || result == NULL
82 || (mask != NULL
37 ipv4_copy_address(const sockaddr *from, sockaddr **to, bool replaceWithZeros = false, const sockaddr *mask = NULL) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DFileSystem.cpp42 fPath(NULL),
43 fRoot(NULL),
44 fServer(NULL),
50 mutex_init(&fOpenOwnerLock, NULL);
51 mutex_init(&fOpenLock, NULL);
52 mutex_init(&fDelegationLock, NULL);
53 mutex_init(&fCreateFileLock, NULL);
59 if (fServer != NULL) {
62 if (server != NULL)
71 if (fPath != NULL) {
[all...]
/haiku/src/system/libnetwork/netresolv/dst/
H A Ddst_api.c147 return (dst_t_func[alg] != NULL);
161 * NULL if error
168 DST_KEY *new_key = NULL;
172 if (new_key == NULL)
173 return (NULL);
177 if (new_key->dk_key_name == NULL) {
179 return (NULL);
184 new_key->dk_KEY_struct = NULL;
205 if (key1 == NULL || key2 == NULL)
[all...]
/haiku/src/kits/locale/
H A DMutableLocaleRoster.cpp62 if (sLocaleRoster == NULL)
134 * NULL is returned, otherwise a pointer to the freshly created catalog.
143 return NULL;
147 return NULL;
157 if (catalog != NULL) {
163 return NULL;
175 * NULL is returned if no matching catalog could be found.
183 return NULL;
193 if (language != NULL) {
201 BCatalogData* catalog = NULL;
[all...]
H A DLanguage.cpp35 fICULocale(NULL)
37 SetTo(NULL);
44 fICULocale(NULL)
52 fICULocale(NULL)
69 if (fICULocale == NULL)
84 string.toTitle(NULL, *fICULocale);
100 if (displayLanguage == NULL) {
135 return NULL;
137 return NULL;
156 if (country == NULL || countr
[all...]
H A DCatalog.cpp24 fCatalogData(NULL),
33 fCatalogData(NULL),
42 fCatalogData(NULL),
64 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
66 if (translated != NULL)
82 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
84 if (translated != NULL)
99 if (fCatalogData == NULL)
103 for (BCatalogData* cat = fCatalogData; cat != NULL; cat = cat->fNext) {
120 if (fCatalogData == NULL)
[all...]
/haiku/src/system/kernel/scheduler/
H A DRunQueue.h122 fPrevious(NULL),
123 fNext(NULL)
155 fList(NULL)
186 return fNext != NULL;
200 if (fNext == NULL)
211 ASSERT(fList != NULL);
215 if (fNext == NULL)
224 ASSERT(fList != NULL);
228 if (fNext != NULL)
260 if (maxPriority == NULL)
271 ASSERT(sGetLink(element)->fPrevious == NULL); local
[all...]
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewStateHistory.cpp51 state(NULL)
59 if (state != NULL)
68 if (state != NULL)
71 if (this->state != NULL)
107 fStates(NULL)
114 if (fStates != NULL) {
117 while (entry != NULL) {
132 if (fStates == NULL)
146 if (stateEntry != NULL)
152 return stateEntry != NULL
[all...]
/haiku/src/kits/debugger/model/
H A DStackFrameValueInfos.cpp48 type(NULL),
49 location(NULL)
57 SetInfo(NULL, NULL);
65 if (type != NULL)
67 if (location != NULL)
70 if (this->type != NULL)
72 if (this->location != NULL)
109 fValues(NULL)
124 if (fValues == NULL)
[all...]
/haiku/src/system/boot/platform/efi/
H A Dacpi.cpp97 acpi_descriptor_header* rsdt = NULL;
100 if (rsdt != NULL
102 rsdt = NULL;
110 if (rsdt == NULL) {
113 if (rsdt == NULL) {
118 rsdt = NULL;
126 if (rsdt != NULL) {
149 if (acpiSdt == NULL)
150 return NULL;
160 return NULL;
[all...]

Completed in 153 milliseconds

1234567891011>>