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

12

/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/headers/private/kernel/boot/net/
H A DNetDefs.h150 uint16 identifier; // fragment identification member in struct:ip_header
/haiku/headers/private/kernel/boot/platform/bios_ia32/
H A Dbios_drive.h15 disk_identifier identifier; member in struct:bios_drive
/haiku/headers/private/kernel/boot/platform/efi/
H A Dplatform_kernel_args.h32 disk_identifier identifier; member in struct:bios_drive
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660_identify.cpp87 char identifier[ISO9660_VOLUME_IDENTIFIER_LENGTH]; member in struct:iso9660_volume_descriptor
280 TRACE(("%s standard identifier: %.5s (%s)\n", indent,
296 TRACE(("%s identifier: '%.32s'\n", indent,
297 primary->identifier));
308 TRACE(("%s set identifier: %.28s\n", indent,
422 if (primary->identifier[i] != 0x20)
429 strlcpy(name, primary->identifier, i + 1);
435 info->SetISO9660Name(primary->identifier, i + 1);
462 ((uint16*)supplementary->identifier)[i]))
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.h176 void set_os_identifier(uint8 identifier) { _os_identifier = identifier; } argument
196 void set_os_identifier(uint8 identifier) { _os_identifier = identifier; } argument
268 entity_id(uint8 flags = 0, const char *identifier = NULL,
270 entity_id(uint8 flags, const char *identifier,
272 entity_id(uint8 flags, const char *identifier,
274 entity_id(uint8 flags, const char *identifier,
282 const char* identifier() const { return _identifier; } function in struct:entity_id
283 char* identifier() { retur function in struct:entity_id
[all...]
H A DVolume.cpp150 // on the type identifier
209 typeId.identifier()));
/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...]
H A DProperty.h23 Property(uint32 identifier);
60 IntProperty(uint32 identifier,
103 FloatProperty(uint32 identifier,
146 UInt8Property(uint32 identifier,
181 BoolProperty(uint32 identifier,
216 StringProperty(uint32 identifier,
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.cpp22 ColorProperty::ColorProperty(uint32 identifier) argument
23 : Property(identifier),
29 ColorProperty::ColorProperty(uint32 identifier, rgb_color color) argument
30 : Property(identifier),
H A DColorProperty.h18 ColorProperty(uint32 identifier);
19 ColorProperty(uint32 identifier,
H A DIconProperty.cpp19 IconProperty::IconProperty(uint32 identifier, argument
24 : Property(identifier),
H A DIconProperty.h18 IconProperty(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 DOptionProperty.cpp21 OptionProperty::OptionProperty(uint32 identifier) argument
22 : Property(identifier),
H A DOptionProperty.h19 OptionProperty(uint32 identifier);
/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/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...]
/haiku/src/preferences/filetypes/
H A DAttributeListView.cpp74 if (base.ICompare(kDisplayAsMap[i].identifier) == 0) {
H A DAttributeListView.h73 const char* identifier; member in struct:display_as_map
H A DAttributeWindow.cpp142 if (kDisplayAsMap[i].identifier != NULL) {
143 message->AddString("identifier", kDisplayAsMap[i].identifier);
152 if (compare_display_as(kDisplayAsMap[i].identifier,
373 const char* identifier; local
374 if (item->Message()->FindString("identifier", &identifier) == B_OK) {
375 displayAs = identifier;
/haiku/src/servers/app/
H A DDesktopListener.cpp54 int32 identifier; local
55 link.Read<int32>(&identifier);
58 if (listener->Identifier() == identifier) {

Completed in 138 milliseconds

12