Searched refs:_id (Results 1 - 25 of 54) sorted by relevance

123

/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DDirectoryIterator.h25 * \param _id Location to copy inode number of next entry
27 status_t GetNext(char* name, size_t* _nameLength, ino_t* _id);
31 * \param _id inode value of entry if found, ??? otherwise
33 status_t Lookup(const char* name, size_t nameLength, ino_t* _id);
H A DDirectoryIterator.cpp51 DirectoryIterator::GetNext(char* name, size_t* _nameLength, ino_t* _id) argument
58 *_id = fInode->ID();
68 *_id = fInode->ID();
71 return fInode->FindParent(_id);
102 *_id = entry->InodeID();
110 DirectoryIterator::Lookup(const char* name, size_t nameLength, ino_t* _id) argument
115 *_id = fInode->ID();
118 return fInode->FindParent(_id);
150 *_id = entry->InodeID();
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A DDirectoryIterator.cpp45 DirectoryIterator::Lookup(const char* name, ino_t* _id) argument
48 *_id = fInode->ID();
57 status = GetNext(getname, &len, _id);
68 DirectoryIterator::GetNext(char* name, size_t* _nameLength, ino_t* _id) argument
82 *_id = direct.next_ino;
H A DDirectoryIterator.h48 ino_t* _id);
50 ino_t* _id, int64_t* offset);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DDirectoryIterator.cpp60 DirectoryIterator::GetNext(char* name, size_t* _nameLength, ino_t* _id, argument
73 *_id = fInode->ID();
75 *_id = fInode->Parent();
87 *_id = fInode->ID();
96 status_t status = _GetNext(utf16Name, &utf16CodeUnitCount, _id, visitor);
111 *_id, name, *_nameLength);
121 DirectoryIterator::Lookup(const char* name, size_t nameLength, ino_t* _id) argument
124 *_id = fInode->ID();
128 *_id = fInode->ID();
130 *_id
212 _GetNext(uint16* utf16Name, size_t* _codeUnitCount, ino_t* _id, EntryVisitor* visitor) argument
[all...]
H A DDirectoryIterator.h47 ino_t* _id, EntryVisitor* visitor = NULL);
49 ino_t* _id);
56 size_t* _codeUnitCount, ino_t* _id,
/haiku/src/kits/textencoding/
H A DCharacterSet.cpp16 BCharacterSet::BCharacterSet(uint32 _id, uint32 _MIBenum, const char * _print_name, argument
20 id = _id;
/haiku/headers/private/media/
H A DMediaMisc.h24 #define IS_INVALID_NODEID(_id) ((_id) <= 0)
/haiku/src/kits/media/
H A DTimeSourceObject.h26 virtual BMediaAddOn* AddOn(int32* _id) const;
H A DTimeSourceObject.cpp76 TimeSourceObject::AddOn(int32* _id) const
78 if (_id != NULL)
79 *_id = 0;
/haiku/headers/os/interface/
H A DDeskbar.h55 status_t GetItemInfo(const char* name, int32* _id) const;
64 int32* _id = NULL);
65 status_t AddItem(entry_ref* addOn, int32* _id = NULL);
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8192c/
H A Dr92c_var.h78 #define rtwn_r92c_tx_setup_macid(_sc, _buf, _id) \
79 ((R92C_SOFTC(_sc)->rs_tx_setup_macid)((_buf), (_id)))
/haiku/src/kits/interface/
H A DDeskbar.cpp265 BDeskbar::GetItemInfo(const char* name, int32* _id) const
276 result = reply.FindInt32("id", _id);
353 BDeskbar::AddItem(BView* view, int32* _id) argument
366 if (_id != NULL)
367 result = reply.FindInt32("id", _id);
377 BDeskbar::AddItem(entry_ref* addon, int32* _id) argument
385 if (_id != NULL)
386 status = reply.FindInt32("id", _id);
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/
H A Dif_rtwnvar.h447 #define rtwn_tx_start(_sc, _ni, _m, _desc, _type, _id) \
448 (((_sc)->sc_tx_start)((_sc), (_ni), (_m), (_desc), (_type), (_id)))
467 #define rtwn_beacon_unload(_sc, _id) \
468 (((_sc)->sc_beacon_unload)((_sc), (_id)))
530 #define rtwn_fill_tx_desc_null(_sc, _buf, _11b, _qos, _id) \
532 (_buf), (_11b), (_qos), (_id)))
558 #define rtwn_beacon_init(_sc, _buf, _id) \
559 (((_sc)->sc_beacon_init)((_sc), (_buf), (_id)))
560 #define rtwn_beacon_enable(_sc, _id, _enable) \
561 (((_sc)->sc_beacon_enable)((_sc), (_id), (_enabl
[all...]
/haiku/headers/os/media/
H A DMediaTheme.h97 const char** _info, int32* _id);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dah_osdep.h149 #define OS_MARK(_ah, _id, _v)
/haiku/src/build/libroot/
H A Dfs_attr_generic.cpp134 make_unique_node_id(string& _id) argument
160 _id.clear();
162 _id += kHexChars[buffer[i] >> 4];
163 _id += kHexChars[buffer[i] & 0xf];
171 get_id_attribute(const char *path, int fd, string& _id) argument
195 _id = buffer;
199 _id = string(buffer, bytesRead);
/haiku/src/kits/support/
H A DArchivable.cpp635 instantiate_object(BMessage* archive, image_id* _id) argument
639 if (_id != NULL)
640 status = _id;
664 className, signature, _id);
700 if (_id != NULL)
701 *_id = addOn;
/haiku/src/tests/add-ons/kernel/partitioning_systems/
H A DPartitioningSystemsTest.cpp43 create_disk_device(int fd, const char* path, partition_id* _id) argument
88 if (_id != NULL)
89 *_id = partition->id;
/haiku/src/servers/media/
H A DNodeManager.h89 int32* _id);
96 status_t FindNodeID(port_id port, media_node_id* _id);
/haiku/src/kits/package/hpkg/
H A DReaderImplBase.cpp1147 ReaderImplBase::_ReadAttribute(uint8& _id, AttributeValue& _value, argument
1165 _id = attribute_tag_id(tag);
1166 if (_id < B_HPKG_ATTRIBUTE_ID_ENUM_COUNT) {
1167 if (type != kAttributeTypes[_id]) {
1170 fCurrentSection->name, type, _id, kAttributeTypes[_id]);
1175 "attribute id %d not supported!\n", fCurrentSection->name, _id);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DInode.cpp493 int32 mode, int openMode, uint8 type, bool* _created, ino_t* _id,
565 if (_id != NULL)
566 *_id = inode->ID();
570 if (_id != NULL || _inode != NULL)
705 if (_id != NULL)
706 *_id = id;
710 if (_id != NULL || _inode != NULL)
492 Create(Transaction& transaction, Inode* parent, const char* name, int32 mode, int openMode, uint8 type, bool* _created, ino_t* _id, Inode** _inode, fs_vnode_ops* vnodeOps, uint32 publishFlags) argument
H A DDirectoryIterator.cpp89 DirectoryIterator::Get(char* name, size_t* _nameLength, ino_t* _id) argument
129 *_id = entry->InodeID();
138 DirectoryIterator::GetNext(char* name, size_t* _nameLength, ino_t* _id) argument
141 while ((status = Get(name, _nameLength, _id)) == B_BAD_DATA) {
322 DirectoryIterator::FindEntry(const char* name, ino_t* _id) argument
336 if (_id != NULL)
337 *_id = id;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp2521 Inode::Remove(Transaction& transaction, const char* name, ino_t* _id, argument
2534 if (_id)
2535 *_id = id;
2612 If the "_id" or "_inode" variable is given and non-NULL to store the
2621 int32 mode, int openMode, uint32 type, bool* _created, ino_t* _id,
2690 if (_id)
2691 *_id = inode->ID();
2695 // Only keep the vnode in memory if the _id or _inode pointer is
2697 if (_id != NULL || _inode != NULL)
2829 if (_id !
2620 Create(Transaction& transaction, Inode* parent, const char* name, int32 mode, int openMode, uint32 type, bool* _created, ino_t* _id, Inode** _inode, fs_vnode_ops* vnodeOps, uint32 publishFlags) argument
2880 GetNext(char* name, size_t* _length, uint32* _type, ino_t* _id) argument
[all...]
/haiku/src/system/kernel/posix/
H A Drealtime_sem.cpp433 uint32 semCount, sem_t* userSem, sem_t*& _usedUserSem, int32_t& _id,
450 _id = teamSem->ID();
483 _id = teamSem->ID();
432 OpenSem(const char* name, int openFlags, mode_t mode, uint32 semCount, sem_t* userSem, sem_t*& _usedUserSem, int32_t& _id, bool& _created) argument

Completed in 203 milliseconds

123