Top |
OsinfoDeviceList *
osinfo_devicelist_new (void
);
Construct a new device list that is initially empty.
OsinfoDeviceList *
osinfo_devicelist_new_copy (OsinfoDeviceList *source
);
osinfo_devicelist_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 device list that is filled with devices
from source
OsinfoDeviceList * osinfo_devicelist_new_filtered (OsinfoDeviceList *source
,OsinfoFilter *filter
);
osinfo_devicelist_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 device list that is filled with devices
from source
that match filter
OsinfoDeviceList * osinfo_devicelist_new_intersection (OsinfoDeviceList *sourceOne
,OsinfoDeviceList *sourceTwo
);
osinfo_devicelist_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 device list that is filled with only the
devices that are present in both sourceOne
and sourceTwo
.
OsinfoDeviceList * osinfo_devicelist_new_union (OsinfoDeviceList *sourceOne
,OsinfoDeviceList *sourceTwo
);
osinfo_devicelist_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 device list that is filled with all the
devices that are present in either sourceOne
and sourceTwo
.