Lines Matching refs:Current
19 ArcGetPeer(pcomponent *Current) in ArcGetPeer() argument
21 if (Current == PROM_NULL_COMPONENT) in ArcGetPeer()
24 return (pcomponent *) ARC_CALL1(next_component, Current); in ArcGetPeer()
28 ArcGetChild(pcomponent *Current) in ArcGetChild() argument
30 return (pcomponent *) ARC_CALL1(child_component, Current); in ArcGetChild()
34 ArcGetParent(pcomponent *Current) in ArcGetParent() argument
36 if (Current == PROM_NULL_COMPONENT) in ArcGetParent()
39 return (pcomponent *) ARC_CALL1(parent_component, Current); in ArcGetParent()
43 ArcGetConfigurationData(VOID *Buffer, pcomponent *Current) in ArcGetConfigurationData() argument
45 return ARC_CALL2(component_data, Buffer, Current); in ArcGetConfigurationData()
49 ArcAddChild(pcomponent *Current, pcomponent *Template, VOID *ConfigurationData) in ArcAddChild() argument
52 ARC_CALL3(child_add, Current, Template, ConfigurationData); in ArcAddChild()