Searched defs:ppList (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_GetAssociatedTPGOidList.c33 MP_GetAssociatedTPGOidList(MP_OID oid, MP_OID_LIST **ppList) argument
41 mpStatus = getAssociatedTPGOidList(oid, ppList);
51 getAssociatedTPGOidList(MP_OID oid, MP_OID_LIST **ppList) argument
162 *ppList = createOidList(1);
163 if (NULL == *ppList) {
255 *ppList = createOidList(numOBJ);
256 if (NULL == *ppList) {
258 "no memory for *ppList");
265 (*ppList)->oidCount = numOBJ;
268 "(*ppList)
[all...]
H A DMP_GetDeviceProductOidListPlugin.c39 MP_GetDeviceProductOidListPlugin(MP_OID_LIST **ppList) argument
145 *ppList = createOidList(1);
146 if (NULL == *ppList) {
239 *ppList = createOidList(numOBJ);
240 if (NULL == *ppList) {
242 "no memory for *ppList");
249 (*ppList)->oidCount = numOBJ;
252 "(*ppList)->oidCount = %d",
253 (*ppList)->oidCount);
256 (*ppList)
[all...]
H A DMP_GetProprietaryLBOidListPlugin.c35 MP_GetProprietaryLoadBalanceOidListPlugin(MP_OID_LIST **ppList) argument
141 *ppList = createOidList(1);
142 if (NULL == *ppList) {
241 *ppList = createOidList(numOBJ);
242 if (NULL == *ppList) {
245 "no memory for *ppList");
253 (*ppList)->oidCount = numOBJ;
257 "(*ppList)->oidCount = %d",
258 (*ppList)->oidCount);
262 (*ppList)
[all...]
H A DMP_GetTargetPortOidList.c37 MP_GetTargetPortOidList(MP_OID oid, MP_OID_LIST **ppList) argument
45 mpStatus = getTargetPortOidList(oid, ppList);
56 getTargetPortOidList(MP_OID oid, MP_OID_LIST **ppList) argument
167 *ppList = createOidList(1);
168 if (NULL == *ppList) {
259 *ppList = createOidList(numOBJ);
260 if (NULL == *ppList) {
262 "no memory for *ppList");
269 (*ppList)->oidCount = numOBJ;
272 "(*ppList)
[all...]
H A DMP_GetInitiatorPortOidListPlugin.c120 MP_GetInitiatorPortOidListPlugin(MP_OID_LIST **ppList) argument
144 *ppList = createOidList(1);
146 if (NULL == *ppList) {
148 "no memory for *ppList");
160 *ppList = createOidList(numNodes);
161 if (NULL == *ppList) {
163 "no memory for *ppList");
169 (*ppList)->oidCount = numNodes;
171 numNodes = getOidList(root_node, *ppList);
173 for (i = 0; i < (*ppList)
[all...]
H A DMP_GetMultipathLusPlugin.c155 MP_GetMultipathLusPlugin(MP_OID_LIST **ppList) argument
210 *ppList = pOidList;
220 *ppList = createOidList(numNodes);
221 if (NULL == *ppList) {
223 "no memory for *ppList");
229 (*ppList)->oidCount = numNodes;
231 numNodes = getOidList(root_node, *ppList);
233 for (i = 0; i < (*ppList)->oidCount; i++) {
236 "(*ppList)->oids[%d].objectType = %d",
237 i, (*ppList)
[all...]
H A DMP_GetMultipathLusDevProd.c118 MP_GetMultipathLusDevProd(MP_OID oid, MP_OID_LIST **ppList) argument
231 *ppList = createOidList(1);
232 if (NULL == *ppList) {
245 (*ppList)->oids[0].objectType = MP_OBJECT_TYPE_MULTIPATH_LU;
246 (*ppList)->oids[0].ownerId = g_pluginOwnerID;
254 *ppList = createOidList(numNodes);
255 if (NULL == *ppList) {
257 "no memory for *ppList");
263 (*ppList)->oidCount = numNodes;
265 numNodes = getOidList(root_node, *ppList, inqProductI
[all...]
H A DMP_GetAssociatedPathOidList.c384 MP_GetAssociatedPathOidList(MP_OID oid, MP_OID_LIST **ppList) argument
522 *ppList = createOidList(1);
523 if (NULL == *ppList) {
614 *ppList = createOidList(numOBJ);
615 if (NULL == *ppList) {
617 "no memory for *ppList");
624 (*ppList)->oidCount = numOBJ;
627 "(*ppList)->oidCount = %d",
628 (*ppList)->oidCount);
631 (*ppList)
[all...]
H A DMP_GetMPLuOidListFromTPG.c66 MP_OID_LIST *ppList = NULL; local
80 mpStatus = getAssociatedTPGOidList(luOID, &ppList);
90 for (tpg = 0; tpg < ppList->oidCount; tpg++) {
92 mpStatus = getTargetPortGroupProperties(ppList->oids[tpg],
115 free(ppList);
342 MP_GetMPLuOidListFromTPG(MP_OID oid, MP_OID_LIST **ppList) argument
438 *ppList = pOidList;
448 *ppList = createOidList(numNodes);
449 if (NULL == *ppList) {
451 "no memory for *ppList");
[all...]
/illumos-gate/usr/src/lib/mpapi/libmpapi/common/
H A Dmpapi.c390 * @param ppList A pointer to a pointer to an @ref MP_OID_LIST. On successful
398 * @retval MP_STATUS_INVALID_PARAMETER Returned if @a ppList is NULL or
404 MP_OID_LIST **ppList)
408 if (ppList == NULL)
414 *ppList = (MP_OID_LIST*)calloc(1, sizeof(MP_OID_LIST));
416 *ppList = (MP_OID_LIST*)calloc(1,
420 if ((*ppList) == NULL) {
425 (*ppList)->oidCount = number_of_plugins;
429 (*ppList)->oids[i].objectType = MP_OBJECT_TYPE_PLUGIN;
430 (*ppList)
403 MP_GetPluginOidList( MP_OID_LIST **ppList) argument
648 MP_GetDeviceProductOidList( MP_OID oid, MP_OID_LIST **ppList) argument
798 MP_GetInitiatorPortOidList( MP_OID oid, MP_OID_LIST **ppList) argument
941 MP_GetMultipathLus( MP_OID oid, MP_OID_LIST **ppList) argument
1104 MP_GetAssociatedPathOidList( MP_OID oid, MP_OID_LIST **ppList) argument
1251 MP_GetAssociatedTPGOidList( MP_OID oid, MP_OID_LIST **ppList) argument
1393 MP_GetMPLuOidListFromTPG( MP_OID oid, MP_OID_LIST **ppList) argument
1469 MP_GetProprietaryLoadBalanceOidList( MP_OID oid, MP_OID_LIST **ppList) argument
1612 MP_GetTargetPortOidList( MP_OID oid, MP_OID_LIST **ppList) argument
[all...]
/illumos-gate/usr/src/cmd/iscsiadm/
H A Dsun_ima.c111 IMA_OID_LIST **ppList);
164 SUN_IMA_DISC_ADDR_PROP_LIST **ppList
238 *ppList = (SUN_IMA_DISC_ADDR_PROP_LIST *)calloc(1,
241 if (*ppList == NULL) {
246 (*ppList)->discAddrCount = ialp->al_out_cnt;
252 (*ppList)->props[i].discoveryAddress.hostnameIpAddress.
258 (*ppList)->props[i].discoveryAddress.hostnameIpAddress.
266 ipAddr = &(*ppList)->props[i].discoveryAddress.
270 (*ppList)->props[i].discoveryAddress.hostnameIpAddress.id.
274 (*ppList)
1978 get_target_oid_list( uint32_t targetListType, IMA_OID_LIST **ppList) argument
[all...]
/illumos-gate/usr/src/lib/libsun_ima/common/
H A Dima.c135 IMA_OID_LIST **ppList);
140 SUN_IMA_DISC_ADDR_PROP_LIST **ppList
143 SUN_IMA_DISC_ADDRESS_KEY_PROPERTIES **ppList
387 IMA_OID_LIST **ppList
395 *ppList = (IMA_OID_LIST*)calloc(1, sizeof (IMA_OID_LIST));
396 if (*ppList == NULL) {
400 (*ppList)->oidCount = 1;
401 (void) memcpy(&(*ppList)->oids[0],
487 IMA_OID_LIST **ppList
490 if (ppList
2484 get_target_oid_list( uint32_t targetListType, IMA_OID_LIST **ppList) argument
[all...]
/illumos-gate/usr/src/lib/libima/common/
H A Dima-lib.c749 * @param ppList A pointer to a pointer to an @ref IMA_OID_LIST.
757 * @retval IMA_ERROR_INVALID_PARAMETER Returned if @a ppList is NULL or
761 IMA_OID_LIST **ppList) {
768 if (ppList == NULL)
773 *ppList = (IMA_OID_LIST*)calloc(1, sizeof (IMA_OID_LIST) +
776 if ((*ppList) == NULL)
779 (*ppList)->oidCount = number_of_plugins;
783 (*ppList)->oids[i].objectType = IMA_OBJECT_TYPE_PLUGIN;
784 (*ppList)->oids[i].ownerId = plugintable[i].ownerId;
785 (*ppList)
760 IMA_GetPluginOidList( IMA_OID_LIST **ppList) argument
1380 IMA_GetLhbaOidList( IMA_OID_LIST **ppList) argument
1611 IMA_GetPhbaOidList( IMA_OID_LIST **ppList) argument
1849 IMA_GetNonSharedNodeOidList( IMA_OID_LIST **ppList) argument
2287 IMA_GetNetworkPortalOidList( IMA_OID lnpId, IMA_OID_LIST **ppList) argument
3534 IMA_GetTargetOidList( IMA_OID Oid, IMA_OID_LIST **ppList) argument
4026 IMA_GetPnpOidList( IMA_OID Oid, IMA_OID_LIST **ppList) argument
4366 IMA_GetLnpOidList( IMA_OID_LIST **ppList) argument
4839 IMA_GetLuOidList( IMA_OID Oid, IMA_OID_LIST **ppList) argument
6286 IMA_GetStaticDiscoveryTargetOidList( IMA_OID oid, IMA_OID_LIST **ppList) argument
6617 IMA_GetDiscoveryAddressOidList( IMA_OID Oid, IMA_OID_LIST **ppList) argument
6772 IMA_GetSessionOidList( IMA_OID Oid, IMA_OID_LIST **ppList) argument
6929 IMA_GetConnectionOidList( IMA_OID Oid, IMA_OID_LIST **ppList) argument
[all...]

Completed in 68 milliseconds