Lines Matching refs:child

117 	BMutablePartition* child = fMutablePartition.ChildAt(index);
118 return child ? child->GetDelegate() : NULL;
151 BPartition::Delegate::SupportedChildOperations(Delegate* child,
157 return fPartitionHandle->SupportedChildOperations(child->MutablePartition(),
195 BPartition::Delegate::ValidateResizeChild(Delegate* child, off_t* size) const
197 if (!fPartitionHandle || !child)
200 return fPartitionHandle->ValidateResizeChild(&child->fMutablePartition,
218 BPartition::Delegate::ResizeChild(Delegate* child, off_t size)
220 if (!fPartitionHandle || !child)
223 return fPartitionHandle->ResizeChild(&child->fMutablePartition, size);
240 BPartition::Delegate::ValidateMoveChild(Delegate* child, off_t* offset) const
242 if (!fPartitionHandle || !child)
245 return fPartitionHandle->ValidateMoveChild(&child->fMutablePartition,
263 BPartition::Delegate::MoveChild(Delegate* child, off_t offset)
265 if (!fPartitionHandle || !child)
268 return fPartitionHandle->MoveChild(&child->fMutablePartition, offset);
285 BPartition::Delegate::ValidateSetName(Delegate* child, BString* name) const
287 if (!fPartitionHandle || !child)
290 return fPartitionHandle->ValidateSetName(&child->fMutablePartition, name);
307 BPartition::Delegate::SetName(Delegate* child, const char* name)
309 if (!fPartitionHandle || !child)
312 return fPartitionHandle->SetName(&child->fMutablePartition, name);
318 BPartition::Delegate::ValidateSetType(Delegate* child, const char* type) const
320 if (!fPartitionHandle || !child)
323 return fPartitionHandle->ValidateSetType(&child->fMutablePartition, type);
329 BPartition::Delegate::SetType(Delegate* child, const char* type)
331 if (!fPartitionHandle || !child)
334 return fPartitionHandle->SetType(&child->fMutablePartition, type);
351 BPartition::Delegate::SetParameters(Delegate* child, const char* parameters)
353 if (!fPartitionHandle || !child)
356 return fPartitionHandle->SetParameters(&child->fMutablePartition,
363 BPartition::Delegate::GetNextSupportedChildType(Delegate* child,
366 TRACE("%p->BPartition::Delegate::GetNextSupportedChildType(child: %p, "
367 "cookie: %ld)\n", this, child, *cookie);
375 child ? &child->fMutablePartition : NULL, cookie, type);
381 BPartition::Delegate::IsSubSystem(Delegate* child,
390 bool result = addOn->IsSubSystemFor(&child->fMutablePartition);
522 const char* name, const char* parameters, BPartition** child)
533 if (child)
534 *child = mutableChild->GetDelegate()->Partition();
542 BPartition::Delegate::DeleteChild(Delegate* child)
544 if (!fPartitionHandle || !child)
547 return fPartitionHandle->DeleteChild(&child->fMutablePartition);