Searched refs:attrInfo (Results 1 - 25 of 42) sorted by path

12

/haiku/headers/build/os/kernel/
H A Dfs_attr.h30 struct attr_info *attrInfo);
/haiku/headers/os/kernel/
H A Dfs_attr.h29 struct attr_info *attrInfo);
/haiku/headers/private/fs_shell/
H A Dfssh_fs_attr.h31 struct fssh_attr_info *attrInfo);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareAttrDir.cpp437 const AttributeInfo& attrInfo = attrInfos[i]; local
440 const void* data = attrInfo.data.GetData();
441 if (data && attrInfo.data.GetSize() != attrInfo.info.size)
443 error = Attribute::CreateAttribute(attrInfo.name.GetString(),
444 attrInfo.info, data, attributes + i);
H A DShareVolume.cpp1897 ShareVolume::StatAttr(Node* _node, const char* name, struct attr_info* attrInfo) argument
1915 attribute->GetInfo(attrInfo);
1936 *attrInfo = reply->attrInfo.info;
2319 const char* name = request->attrInfo.name.GetString();
H A DShareVolume.h133 struct attr_info* attrInfo);
H A DVirtualVolume.cpp737 VirtualVolume::StatAttr(Node* node, const char* name, struct attr_info* attrInfo) argument
H A DVirtualVolume.h113 struct attr_info* attrInfo);
H A DVolume.cpp519 Volume::StatAttr(Node* node, const char* name, struct attr_info* attrInfo) argument
H A DVolume.h147 struct attr_info* attrInfo);
H A Dnetfs.cpp92 struct attr_info *attrInfo);
861 struct attr_info *attrInfo)
865 attrInfo);
866 status_t error = node->GetVolume()->StatAttr(node, name, attrInfo);
860 netfs_stat_attr(void *ns, void *_node, const char *name, struct attr_info *attrInfo) argument
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequests.h1147 visitor->Visit(this, attrInfo);
1150 AttributeInfo attrInfo; member in struct:StatAttrReply
1346 visitor->Visit(this, attrInfo);
1352 AttributeInfo attrInfo; member in struct:AttributeChangedRequest
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DClientConnection.h130 const char* name, const attr_info& attrInfo,
H A DClientConnection.cpp2345 attr_info attrInfo; local
2348 result = handle->StatAttr(request->name.GetString(), &attrInfo);
2354 result = _GetAttrInfo(request, request->name.GetString(), attrInfo,
2355 NULL, &reply.attrInfo);
2689 const attr_info& attrInfo, const void* data, AttributeInfo* info)
2695 info->info = attrInfo;
2696 data = (attrInfo.size > 0 ? data : NULL);
2697 int32 dataSize = (data ? attrInfo.size : 0);
2734 AttributeInfo attrInfo; local
2738 attribute->GetData(), &attrInfo);
2688 _GetAttrInfo(Request* request, const char* name, const attr_info& attrInfo, const void* data, AttributeInfo* info) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp647 beos_attr_info attrInfo; local
652 &attrInfo);
657 st->st_size = attrInfo.size;
658 st->st_type = attrInfo.type;
845 beos_attr_info attrInfo;
849 = (fFSOps->stat_attr(fVolumeCookie, node, name, &attrInfo) == B_OK);
861 type = attrInfo.type;
/haiku/src/build/libroot/
H A Dfs_attr_haiku.cpp229 _haiku_build_fs_stat_attr(int fd, const char *attribute, struct attr_info *attrInfo) argument
231 if (!attribute || !attrInfo) {
246 result = fs_stat_attr(fd, attribute, attrInfo);
249 result = fs_stat_attr(localFD.FD(), attribute, attrInfo);
H A Dremapped_functions.h57 struct attr_info *attrInfo);
/haiku/src/kits/shared/
H A DAttributeUtilities.cpp28 attr_info attrInfo; local
29 status_t status = source.GetAttrInfo(attrName, &attrInfo);
36 off_t bytesLeft = attrInfo.size;
46 ssize_t bytesRead = source.ReadAttr(attrName, attrInfo.type,
53 attrInfo.type, offset, buffer, bytesRead);
/haiku/src/kits/storage/
H A DNodeInfo.cpp95 attr_info attrInfo; local
97 result = fNode->GetAttrInfo(kNITypeAttribute, &attrInfo);
99 if (result == B_OK && attrInfo.type != B_MIME_STRING_TYPE)
102 if (result == B_OK && attrInfo.size > B_MIME_TYPE_LENGTH)
107 ssize_t read = fNode->ReadAttr(kNITypeAttribute, attrInfo.type, 0,
108 type, attrInfo.size);
111 else if (read != attrInfo.size)
116 type[min_c(attrInfo.size, B_MIME_TYPE_LENGTH - 1)] = '\0';
251 attr_info attrInfo;
252 status_t result = fNode->GetAttrInfo(kNIIconAttribute, &attrInfo);
314 attr_info attrInfo; local
381 attr_info attrInfo; local
[all...]
/haiku/src/system/libroot/os/
H A Dfs_attr.cpp95 fs_stat_attr(int fd, const char* attribute, struct attr_info* attrInfo) argument
97 status_t status = _kern_stat_attr(fd, attribute, attrInfo);
/haiku/src/tests/kits/storage/testapps/
H A Ddump_mime_types.cpp87 BMessage attrInfo; local
88 if (mimeType.GetAttrInfo(&attrInfo) == B_OK) {
97 attrInfo.FindString("attr:name", k, &name) == B_OK
98 && (attrInfo.FindString("attr:public_name", k,
100 && (attrInfo.FindInt32("attr:type", k, (int32*)&type) == B_OK
102 && (attrInfo.FindBool("attr:viewable", k, &isViewable) == B_OK
104 && (attrInfo.FindBool("attr:public", k, &isPublic) == B_OK
106 && (attrInfo.FindBool("attr:editable", k, &isEditable) == B_OK
/haiku/headers/private/kernel/
H A Dvfs.h223 struct attr_info *attrInfo);
/haiku/headers/private/system/
H A Dsyscalls.h312 struct attr_info *attrInfo);
/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp724 attr_info attrInfo; local
725 if (file.GetAttrInfo(kVectorAttrNodeName, &attrInfo) == B_OK) {
726 if (attrInfo.type != B_VECTOR_ICON_TYPE)
733 buffer = new(nothrow) uint8[attrInfo.size];
739 B_VECTOR_ICON_TYPE, 0, buffer, attrInfo.size);
740 if (bytesRead != (ssize_t)attrInfo.size) {
746 ret = flatImporter.Import(icon, buffer, attrInfo.size);
/haiku/src/bin/
H A Dcopyattr.cpp205 attr_info attrInfo; local
206 status_t error = source.GetAttrInfo(attrName, &attrInfo);
214 if (!parameters.attribute_filter.Filter(attrName, attrInfo.type))
220 off_t bytesLeft = attrInfo.size;
229 ssize_t bytesRead = source.ReadAttr(attrName, attrInfo.type,
240 attrInfo.type, offset, buffer, bytesRead);

Completed in 223 milliseconds

12