Top |
OsinfoDeviceLinkList is a list specialization that stores only OsinfoDeviceLink objects.
OsinfoDeviceLinkList *
osinfo_devicelinklist_new (void
);
Construct a new devicelink list that is initially empty.
OsinfoDeviceLinkList *
osinfo_devicelinklist_new_copy (OsinfoDeviceLinkList *source
);
osinfo_devicelinklist_new_copy
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_copy()
instead.
Construct a new devicelink list that is filled with devicelinks
from source
OsinfoDeviceLinkList * osinfo_devicelinklist_new_filtered (OsinfoDeviceLinkList *source
,OsinfoFilter *filter
);
osinfo_devicelinklist_new_filtered
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_filtered()
instead.
Construct a new devicelink list that is filled with devicelinks
from source
that match filter
OsinfoDeviceLinkList * osinfo_devicelinklist_new_intersection (OsinfoDeviceLinkList *sourceOne
,OsinfoDeviceLinkList *sourceTwo
);
osinfo_devicelinklist_new_intersection
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_intersection()
instead.
Construct a new devicelink list that is filled with only the
devicelinks that are present in both sourceOne
and sourceTwo
.
OsinfoDeviceLinkList * osinfo_devicelinklist_new_union (OsinfoDeviceLinkList *sourceOne
,OsinfoDeviceLinkList *sourceTwo
);
osinfo_devicelinklist_new_union
has been deprecated since version 0.2.2 and should not be used in newly-written code.
Use osinfo_list_new_union()
instead.
Construct a new devicelink list that is filled with all the
devicelinks that are present in either sourceOne
and sourceTwo
.
OsinfoDeviceList * osinfo_devicelinklist_get_devices (OsinfoDeviceLinkList *list
,OsinfoFilter *filter
);
Get all devices matching a given filter