Searched refs:identifier (Results 1 - 25 of 46) sorted by relevance

12

/haiku/src/libs/compat/freebsd_network/
H A Dsynch.cpp17 msleep(void* identifier, struct mtx* mutex, int priority, argument
21 __cv_ConditionVariable(&channel)->Publish(identifier, description);
31 wakeup(void* identifier) argument
33 ConditionVariable::NotifyAll(identifier, B_OK);
38 wakeup_one(void* identifier) argument
40 ConditionVariable::NotifyOne(identifier, B_OK);
/haiku/headers/private/kernel/boot/platform/bios_ia32/
H A Dbios_drive.h15 disk_identifier identifier; member in struct:bios_drive
/haiku/headers/os/app/
H A DKey.h37 const char* identifier,
49 const char* identifier,
57 void SetIdentifier(const char* identifier);
60 void SetSecondaryIdentifier(const char* identifier);
97 BKeyPurpose purpose, const char* identifier,
106 const char* identifier,
H A DKeyStore.h17 status_t GetKey(BKeyType type, const char* identifier,
19 status_t GetKey(BKeyType type, const char* identifier,
21 status_t GetKey(BKeyType type, const char* identifier,
27 BKeyType type, const char* identifier,
30 BKeyType type, const char* identifier,
33 BKeyType type, const char* identifier,
/haiku/headers/private/kernel/arch/x86/
H A Dbios.h27 status_t get_bios32_service(uint32 identifier, struct bios32_service *service);
/haiku/src/kits/package/
H A DRepositoryConfig.cpp32 #define KEY_IDENTIFIER_V2 "identifier"
34 // should not be used any more in favour of 'identifier'
42 // these are mappings of known legacy identifier URLs that are possibly
105 configString << "# an identifier for the repository that is "
139 repository_config_swap_legacy_identifier_v1(const char* identifier) argument
142 if (strcmp(identifier, kLegacyUrlMappings[i]) == 0)
145 return identifier;
186 const char* identifier = NULL; local
188 for (int32 i = 0; identifier == NULL && identifierKeys[i] != NULL; i++)
189 identifier
284 SetIdentifier(const BString& identifier) argument
[all...]
H A DRepositoryInfo.cpp33 const char* const BRepositoryInfo::kIdentifierField = "identifier";
98 // "url" is an older, deprecated key for "identifier"
216 BRepositoryInfo::SetIdentifier(const BString& identifier) argument
218 fIdentifier = identifier;
288 // this is a legacy key for the identifier.
311 // format would take the "url" (identifier) field for the "base-url"
368 const char* identifier = get_driver_parameter(settingsHandle.Get(), local
369 "identifier", NULL, NULL);
371 if (identifier == NULL || *identifier
[all...]
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.h18 ColorProperty(uint32 identifier);
19 ColorProperty(uint32 identifier,
H A DInt64Property.cpp18 Int64Property::Int64Property(uint32 identifier, int64 value) argument
19 : Property(identifier),
H A DInt64Property.h16 Int64Property(uint32 identifier,
H A DColorProperty.cpp22 ColorProperty::ColorProperty(uint32 identifier) argument
23 : Property(identifier),
29 ColorProperty::ColorProperty(uint32 identifier, rgb_color color) argument
30 : Property(identifier),
/haiku/src/libs/compat/openbsd_network/compat/sys/
H A Dsystm.h25 #define tsleep(identifier, priority, wmesg, timeout) \
26 msleep(identifier, &Giant, priority, wmesg, timeout)
27 #define tsleep_nsec(identifier, priority, wmesg, nsecs) \
28 tsleep(identifier, priority, wmesg, USEC_2_TICKS(nsecs / 1000))
/haiku/src/kits/app/
H A DKey.cpp39 BKey::BKey(BKeyPurpose purpose, const char* identifier, argument
42 SetTo(purpose, identifier, secondaryIdentifier, data, length);
65 BKey::SetTo(BKeyPurpose purpose, const char* identifier, argument
70 SetIdentifier(identifier);
91 BKey::SetIdentifier(const char* identifier) argument
93 fIdentifier = identifier;
105 BKey::SetSecondaryIdentifier(const char* identifier) argument
107 fSecondaryIdentifier = identifier;
176 || message.AddString("identifier", fIdentifier) != B_OK
200 || message.FindString("identifier",
294 BPasswordKey(const char* password, BKeyPurpose purpose, const char* identifier, const char* secondaryIdentifier) argument
314 SetTo(const char* password, BKeyPurpose purpose, const char* identifier, const char* secondaryIdentifier) argument
[all...]
H A DKeyStore.cpp32 BKeyStore::GetKey(BKeyType type, const char* identifier, BKey& key) argument
34 return GetKey(NULL, type, identifier, NULL, true, key);
39 BKeyStore::GetKey(BKeyType type, const char* identifier, argument
42 return GetKey(NULL, type, identifier, secondaryIdentifier, false, key);
47 BKeyStore::GetKey(BKeyType type, const char* identifier, argument
51 return GetKey(NULL, type, identifier, secondaryIdentifier,
57 BKeyStore::GetKey(const char* keyring, BKeyType type, const char* identifier, argument
60 return GetKey(keyring, type, identifier, NULL, true, key);
65 BKeyStore::GetKey(const char* keyring, BKeyType type, const char* identifier, argument
68 return GetKey(keyring, type, identifier, secondaryIdentifie
73 GetKey(const char* keyring, BKeyType type, const char* identifier, const char* secondaryIdentifier, bool secondaryIdentifierOptional, BKey& key) argument
[all...]
/haiku/src/servers/keystore/
H A DKeyring.h42 status_t FindKey(const BString& identifier,
50 status_t AddKey(const BString& identifier,
53 status_t RemoveKey(const BString& identifier,
H A DKeyring.cpp292 Keyring::FindKey(const BString& identifier, const BString& secondaryIdentifier, argument
300 if (fData.GetInfo(identifier, &type, &count) != B_OK)
303 // We have a matching primary identifier, need to check for the secondary
304 // identifier.
307 if (fData.FindMessage(identifier, i, &candidate) != B_OK)
328 // The secondary identifier is optional, so we just return the
330 return fData.FindMessage(identifier, 0, _foundKeyMessage);
346 char* identifier = NULL; local
347 if (fData.GetInfo(B_MESSAGE_TYPE, keyIndex, &identifier, NULL,
359 return fData.FindMessage(identifier, inde
403 AddKey(const BString& identifier, const BString& secondaryIdentifier, const BMessage& keyMessage) argument
424 RemoveKey(const BString& identifier, const BMessage& keyMessage) argument
[all...]
/haiku/src/bin/keystore/
H A Dkeystore.cpp17 add_password(const char* keyring, const char* identifier, argument
21 BPasswordKey password(passwordString, B_KEY_PURPOSE_GENERIC, identifier,
35 remove_password(const char* keyring, const char* identifier, argument
41 status_t result = keyStore.GetKey(keyring, B_KEY_TYPE_PASSWORD, identifier,
44 printf("failed to get password \"%s\": %s\n", identifier,
277 printf("\t%s add password <identifier> [<secondaryIdentifier>] <password>"
280 printf("\t%s add password to <keyring> <identifier> [<secondaryIdentifier>]"
284 printf("\t%s remove password <identifier> [<secondaryIdentifier>]\n", name);
286 printf("\t%s remove password from <keyring> <identifier>"
354 const char* identifier local
395 const char* identifier = NULL; local
[all...]
/haiku/headers/private/kernel/boot/platform/efi/
H A Dplatform_kernel_args.h32 disk_identifier identifier; member in struct:bios_drive
/haiku/src/kits/network/libnetservices2/
H A DHttpResultPrivate.h48 HttpResultPrivate(int32 identifier);
60 inline HttpResultPrivate::HttpResultPrivate(int32 identifier) argument
62 id(identifier)
64 std::string name = "httpresult:" + std::to_string(identifier);
/haiku/src/system/boot/platform/riscv/
H A Ddevices.cpp204 disk_identifier identifier; local
206 identifier.bus_type = UNKNOWN_BUS;
207 identifier.device_type = UNKNOWN_DEVICE;
208 identifier.device.unknown.size = device->Size();
212 identifier.device.unknown.check_sums[i].offset = offset;
213 identifier.device.unknown.check_sums[i].sum = compute_check_sum(device,
220 &identifier, sizeof(disk_identifier));
/haiku/src/system/boot/platform/efi/
H A Ddevices.cpp263 disk_identifier identifier; local
265 identifier.bus_type = UNKNOWN_BUS;
266 identifier.device_type = UNKNOWN_DEVICE;
267 identifier.device.unknown.size = device->Size();
271 identifier.device.unknown.check_sums[i].offset = offset;
272 identifier.device.unknown.check_sums[i].sum = compute_check_sum(device,
279 &identifier, sizeof(disk_identifier));
/haiku/src/system/libroot/os/
H A Dparsedate.cpp468 void Adopt(const known_identifier& identifier);
469 void AdoptUnit(const known_identifier& identifier);
484 parsed_element::Adopt(const known_identifier& identifier) argument
486 base_type = type = identifier.type;
487 flags = identifier.flags;
488 unit = identifier.unit;
490 if (identifier.type == TYPE_MODIFIER)
491 modifier = identifier.value;
494 value = identifier.value;
499 parsed_element::AdoptUnit(const known_identifier& identifier) argument
624 const known_identifier* identifier = kIdentifiers; local
[all...]
/haiku/src/system/kernel/arch/x86/32/
H A Dbios.cpp82 * in case the identifier is not known or present.
86 get_bios32_service(uint32 identifier, struct bios32_service *service) argument
88 TRACE(("get_bios32_service(identifier = %#lx)\n", identifier));
105 : "m" (identifier), "m" (sBios32ServiceDirectory)
/haiku/src/apps/icon-o-matic/generic/property/
H A DProperty.cpp23 Property::Property(uint32 identifier) argument
24 : fIdentifier(identifier),
94 IntProperty::IntProperty(uint32 identifier, int32 value, argument
96 : Property(identifier),
229 FloatProperty::FloatProperty(uint32 identifier, float value, argument
231 : Property(identifier),
363 UInt8Property::UInt8Property(uint32 identifier, uint8 value) argument
364 : Property(identifier),
477 BoolProperty::BoolProperty(uint32 identifier, bool value) argument
478 : Property(identifier),
602 StringProperty(uint32 identifier, const char* value) argument
[all...]
/haiku/src/servers/mail/
H A DDefaultNotifier.cpp40 BString identifier; local
41 identifier << accountName << inbound;
44 fNotification.SetMessageID(identifier);

Completed in 218 milliseconds

12