Searched refs:type (Results 1 - 25 of 2122) sorted by last modified time

1234567891011>>

/haiku/headers/private/file_systems/
H A DQueryParser.h143 const char* attribute, int32 type,
200 const char* attribute = NULL, int32 type = 0,
226 The type/size of the value, the score, and if it has an index or not.
251 const char* attribute = NULL, int32 type = 0,
275 status_t ConvertValue(type_code type);
313 const char* attribute = NULL, int32 type = 0,
573 Equation<QueryPolicy>::ConvertValue(type_code type) argument
575 // Has the type already been converted?
576 if (type == fType)
581 switch (type) {
711 Match(Entry* entry, Node* node, const char* attributeName, int32 type, const uint8* key, size_t size) argument
[all...]
/haiku/src/servers/app/
H A DServerApp.cpp1771 // 1) string - font type ("plain", ...)
1776 char type[B_OS_NAME_LENGTH]; local
1781 if (link.ReadString(type, sizeof(type)) == B_OK
1799 if (strcmp(type, "plain") == 0)
1801 else if (strcmp(type, "bold") == 0)
1803 else if (strcmp(type, "fixed") == 0)
1814 // 1) string - font type ("plain", ...)
1818 char type[B_OS_NAME_LENGTH]; local
1819 status_t status = link.ReadString(type, sizeo
[all...]
/haiku/src/kits/tracker/
H A DWidgetAttributeText.cpp213 // call this to make the right WidgetAttributeText type for a
702 // get the mime type
706 // get the short mime type description
1211 // with a type, depending on the bytes that could be read
1564 uint32 type = fColumn->AttrType();
1566 if (type != B_STRING_TYPE
1567 && type != B_UINT64_TYPE
1568 && type != B_UINT32_TYPE
1569 && type != B_UINT16_TYPE
1570 && type !
[all...]
H A DFSUtils.cpp1576 destNode->WriteAttr(name, info.type, 0, buffer, 0);
1585 bytes = srcNode->ReadAttr(name, info.type, offset,
1591 destNode->WriteAttr(name, info.type, offset, buffer,
1992 bytes = srcNode->ReadAttr(name, info.type, offset, buffer,
1998 destNode->WriteAttr(name, info.type, offset, buffer,
3292 const char* foreignAttrName, type_code type, off_t offset, void* buffer,
3295 if (!isForeign && node->ReadAttr(hostAttrName, type, offset, buffer,
3302 if (node->ReadAttr(foreignAttrName, type, offset, buffer, length)
3320 const char* foreignAttrName, type_code* type, size_t* size)
3325 if (type)
3291 ReadAttr(const BNode* node, const char* hostAttrName, const char* foreignAttrName, type_code type, off_t offset, void* buffer, size_t length, void (*swapFunc)(void*), bool isForeign) argument
3319 GetAttrInfo(const BNode* node, const char* hostAttrName, const char* foreignAttrName, type_code* type, size_t* size) argument
3443 char type[B_MIME_TYPE_LENGTH]; local
3705 BMimeType type; local
[all...]
/haiku/src/apps/pulse/
H A DNormalPulseView.cpp120 if (logo == NULL && topology[i].type == B_TOPOLOGY_ROOT) {
131 if (topology[i].type == B_TOPOLOGY_PACKAGE) {
270 // Draw processor type and speed
/haiku/src/apps/mediaplayer/
H A DInfoWin.cpp92 // get type icon
397 } else if (format.type == B_MEDIA_ENCODED_VIDEO) {
409 } else if (format.type == B_MEDIA_RAW_VIDEO) {
456 } else if (format.type == B_MEDIA_ENCODED_AUDIO) {
468 } else if (format.type == B_MEDIA_RAW_AUDIO) {
504 if (format.type == B_MEDIA_ENCODED_AUDIO) {
/haiku/src/apps/mediaconverter/
H A DMediaFileInfo.cpp61 format.type = B_MEDIA_RAW_VIDEO;
92 format.type = B_MEDIA_RAW_AUDIO;
/haiku/src/apps/diskprobe/
H A DProbeView.cpp166 TypeMenuItem(const char* name, const char* type,
216 get_type_string(char* buffer, size_t bufferSize, type_code type) argument
219 buffer[i] = type >> (24 - 8 * i);
221 snprintf(buffer, bufferSize, "0x%04" B_PRIx32, type);
291 BMimeType type(B_FILE_MIME_TYPE);
292 status = type.GetIcon(fBitmap, B_LARGE_ICON);
442 B_TRANSLATE("Attribute type: "));
630 HeaderView::SetBase(base_type type) argument
632 if (fBase == type)
635 fBase = type;
815 int32 type; local
837 TypeMenuItem(const char* name, const char* type, BMessage* message) argument
1156 char type[16]; local
1810 int32 type; local
[all...]
/haiku/src/apps/codycam/
H A DVideoConsumer.cpp46 static status_t SetFileType(BFile* file, int32 translator, uint32 type);
186 fIn.format.type = B_MEDIA_RAW_VIDEO;
431 if (format->type == B_MEDIA_NO_TYPE)
432 format->type = B_MEDIA_RAW_VIDEO;
434 if (format->type != B_MEDIA_RAW_VIDEO) {
534 switch (event->type) {
708 B_TRANSLATE("Error setting type of output file"));
793 SetFileType(BFile* file, int32 translator, uint32 type) argument
805 if (formats[ix].type == type) {
[all...]
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp611 // CPU count, type and clock speed
1127 switch (topology[i].type) {
/haiku/src/add-ons/translators/pcx/
H A DPCXTranslator.cpp103 uint8 type; local
104 if (PCX::identify(ioExtension, *stream, type, bitsPerPixel) != B_OK)
107 info->type = PCX_IMAGE_FORMAT;
/haiku/src/add-ons/translators/ico/
H A DICOTranslator.cpp112 uint8 type; local
113 if (ICO::identify(ioExtension, *stream, type, bitsPerPixel) != B_OK)
116 info->type = ICO_IMAGE_FORMAT;
121 type == ICO::kTypeIcon ? B_TRANSLATE("Icon") : B_TRANSLATE("Cursor"),
/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp166 create_socket(int family, int type, int protocol, net_socket_private** _socket) argument
178 socket->type = type;
188 socket->type, socket->protocol);
334 socket->family, socket->type, socket->protocol, socket->owner,
351 kprintf(" family.type.protocol: %d.%d.%d\n",
352 socket->family, socket->type, socket->protocol);
416 socket_open(int family, int type, int protocol, net_socket** _socket) argument
419 status_t status = create_socket(family, type, protocol, &socket);
581 stat->type
1585 socket_socketpair(int family, int type, int protocol, net_socket* sockets[2]) argument
[all...]
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A Dl2cap_command.cpp95 option->header.type = l2cap_configuration_option::OPTION_MTU;
109 option->header.type = l2cap_configuration_option::OPTION_FLUSH_TIMEOUT;
123 option->header.type = l2cap_configuration_option::OPTION_QOS;
211 make_l2cap_information_req(uint8& code, uint16 type) argument
223 command->type = htole16(type);
230 make_l2cap_information_rsp(uint8& code, uint16 type, uint16 result, uint16 _mtu) argument
242 command->type = htole16(type);
246 switch (type) {
[all...]
H A Dl2cap_command.h35 net_buffer* make_l2cap_information_req(uint8& code, uint16 type);
36 net_buffer* make_l2cap_information_rsp(uint8& code, uint16 type, uint16 result, uint16 mtu);
H A Dl2cap_signal.cpp97 const bool hint = (option.type & l2cap_configuration_option::OPTION_HINT_BIT);
98 option.type &= ~l2cap_configuration_option::OPTION_HINT_BIT;
100 switch (option.type) {
278 const uint16 type = le16toh(command->type); local
282 switch (type) {
284 reply = make_l2cap_information_rsp(replyCode, type,
289 ERROR("l2cap: unhandled information request type %d\n", type);
290 reply = make_l2cap_information_rsp(replyCode, type,
[all...]
H A DL2capEndpoint.cpp487 buffer->type = fConnection->handle;
/haiku/src/add-ons/kernel/bluetooth/btCoreData/
H A DConnectionInterface.cpp64 AddConnection(uint16 handle, int type, const bdaddr_t& dst, hci_id hid) argument
89 conn->type = type;
H A DConnectionInterface.h23 HciConnection* AddConnection(uint16 handle, int type, const bdaddr_t& dst,
/haiku/headers/private/bluetooth/
H A DbtCoreData.h45 int type; member in struct:HciConnection
78 struct HciConnection* (*AddConnection)(uint16 handle, int type,
H A Dl2cap.h163 }; uint8 type;
209 }; uint16 type;
214 uint16 type;
/haiku/headers/os/bluetooth/HCI/
H A DbtHCI_transport.h122 status_t (*PostTransportPacket)(hci_id hid, bt_packet_t type,
154 #define PACK_PORTCODE(type,hid,data) ((type & 0xFF) << 24 | (hid & 0xFF) << 16 | (data & 0xFFFF))
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A Dkernel_interface.cpp1511 uint32 type, int openMode, void** _cookie)
1547 // if not existing yet, create the attribute and set its type
1553 attribute->SetType(type);
1937 ramfs_create_index(fs_volume* _volume, const char *name, uint32 type, argument
1956 error = indexDir->CreateIndex(name, type, &index);
1510 ramfs_create_attr(fs_volume* _volume, fs_vnode* _node, const char *name, uint32 type, int openMode, void** _cookie) argument
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Dmulti.c49 emuxki_ac97_get_mix(void *card, const void *cookie, int32 type, float *values) { argument
55 switch(type) {
59 if (info->type & B_MIX_STEREO) {
107 emuxki_ac97_set_mix(void *card, const void *cookie, int32 type, float *values) { argument
113 switch(type) {
116 if (info->type & B_MIX_STEREO) {
179 emuxki_gpr_get_mix(void *card, const void *cookie, int32 type, float *values) { argument
180 emuxki_gpr_get((emuxki_dev*)card, (emuxki_gpr *)cookie, type, values);
184 emuxki_gpr_set_mix(void *card, const void *cookie, int32 type, float *values) { argument
185 emuxki_gpr_set((emuxki_dev*)card, (emuxki_gpr *)cookie, type, value
189 emuxki_parameter_get_mix(void *card, const void *cookie, int32 type, float *values) argument
196 emuxki_parameter_set_mix(void *card, const void *cookie, int32 type, float *values) argument
[all...]
H A Demuxki.h330 emuxki_gpr_type type; member in struct:_emuxki_gpr
425 void emuxki_gpr_set(emuxki_dev *card, emuxki_gpr *gpr, int32 type, float *values);
426 void emuxki_gpr_get(emuxki_dev *card, emuxki_gpr *gpr, int32 type, float *values);
428 void emuxki_parameter_set(emuxki_dev *card, const void*, int32 type, int32 *value);
429 void emuxki_parameter_get(emuxki_dev *card, const void*, int32 type, int32 *value);

Completed in 234 milliseconds

1234567891011>>