Home
last modified time | relevance | path

Searched refs:idFound (Results 1 – 6 of 6) sorted by relevance

/haiku/headers/os/storage/
H A DResources.h75 type_code* typeFound, int32* idFound,
79 int32 andIndex, int32* idFound,
86 const char* andName, int32* idFound,
90 int32* idFound, size_t* lengthFound,
/haiku/src/kits/storage/
H A DResources.cpp468 int32* idFound, const char** nameFound, size_t* lengthFound) in GetResourceInfo() argument
476 if (idFound) in GetResourceInfo()
477 *idFound = item->ID(); in GetResourceInfo()
489 BResources::GetResourceInfo(type_code byType, int32 andIndex, int32* idFound, in GetResourceInfo() argument
498 if (idFound) in GetResourceInfo()
499 *idFound = item->ID(); in GetResourceInfo()
530 int32* idFound, size_t* lengthFound) in GetResourceInfo() argument
536 if (idFound) in GetResourceInfo()
537 *idFound = item->ID(); in GetResourceInfo()
548 int32* idFound, size_t* lengthFound, const char** nameFound) in GetResourceInfo() argument
[all …]
H A DAppFileInfo.cpp1083 int32 idFound; in _ReadData() local
1086 if (!fResources->GetResourceInfo(type, name, &idFound, &sizeFound)) in _ReadData()
1091 if (error == B_OK && id >= 0 && idFound != id) in _ReadData()
1167 int32 idFound; in _WriteData() local
1169 if (fResources->GetResourceInfo(type, name, &idFound, &sizeFound)) in _WriteData()
1170 id = idFound; in _WriteData()
1216 int32 idFound; in _RemoveData() local
1218 if (fResources->GetResourceInfo(type, name, &idFound, &sizeFound)) in _RemoveData()
1219 error = fResources->RemoveResource(type, idFound); in _RemoveData()
/haiku/src/build/libbe/storage/
H A DAppFileInfo.cpp1047 int32 idFound; in _ReadData() local
1050 if (!fResources->GetResourceInfo(type, name, &idFound, &sizeFound)) in _ReadData()
1055 if (error == B_OK && id >= 0 && idFound != id) in _ReadData()
1111 int32 idFound; in _WriteData() local
1113 if (fResources->GetResourceInfo(type, name, &idFound, &sizeFound)) in _WriteData()
1114 id = idFound; in _WriteData()
1145 int32 idFound; in _RemoveData() local
1147 if (fResources->GetResourceInfo(type, name, &idFound, &sizeFound)) in _RemoveData()
1148 error = fResources->RemoveResource(type, idFound); in _RemoveData()
/haiku/docs/user/storage/
H A DResources.dox496 int32* idFound, const char** nameFound, size_t* lengthFound)
502 \param idFound A pointer to a variable the ID of the found resource
518 int32* idFound, const char** nameFound, size_t* lengthFound)
524 \param idFound A pointer to a variable the ID of the found resource
560 int32* idFound, size_t* lengthFound)
566 \param idFound A pointer to a variable the ID of the found resource
580 type_code* typeFound, int32* idFound, size_t* lengthFound,
588 \param idFound A pointer to a variable the ID of the found resource
/haiku/src/tests/kits/storage/
H A DAppFileInfoTest.cpp275 int32 idFound; in ReadResource() local
276 CHK(resources.GetResourceInfo(type, name, &idFound, &size) == true); in ReadResource()
277 CHK(idFound == id); in ReadResource()
309 int32 idFound; in CheckResource() local
311 CHK(resources.GetResourceInfo(type, name, &idFound, &size) == true); in CheckResource()
312 CHK(idFound == id); in CheckResource()
337 int32 idFound; in CheckNoResource() local
342 !found && resources.GetResourceInfo(i, &typeFound, &idFound, in CheckNoResource()