• Home
  • Raw
  • Download

Lines Matching refs:iface

174   GVolumeIface *iface;  in g_volume_get_name()  local
178 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_name()
180 return (* iface->get_name) (volume); in g_volume_get_name()
196 GVolumeIface *iface; in g_volume_get_icon() local
200 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_icon()
202 return (* iface->get_icon) (volume); in g_volume_get_icon()
221 GVolumeIface *iface; in g_volume_get_uuid() local
225 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_uuid()
227 return (* iface->get_uuid) (volume); in g_volume_get_uuid()
243 GVolumeIface *iface; in g_volume_get_drive() local
247 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_drive()
249 return (* iface->get_drive) (volume); in g_volume_get_drive()
265 GVolumeIface *iface; in g_volume_get_mount() local
269 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_mount()
271 return (* iface->get_mount) (volume); in g_volume_get_mount()
286 GVolumeIface *iface; in g_volume_can_mount() local
290 iface = G_VOLUME_GET_IFACE (volume); in g_volume_can_mount()
292 if (iface->can_mount == NULL) in g_volume_can_mount()
295 return (* iface->can_mount) (volume); in g_volume_can_mount()
309 GVolumeIface *iface; in g_volume_can_eject() local
313 iface = G_VOLUME_GET_IFACE (volume); in g_volume_can_eject()
315 if (iface->can_eject == NULL) in g_volume_can_eject()
318 return (* iface->can_eject) (volume); in g_volume_can_eject()
332 GVolumeIface *iface; in g_volume_should_automount() local
336 iface = G_VOLUME_GET_IFACE (volume); in g_volume_should_automount()
338 if (iface->should_automount == NULL) in g_volume_should_automount()
341 return (* iface->should_automount) (volume); in g_volume_should_automount()
366 GVolumeIface *iface; in g_volume_mount() local
370 iface = G_VOLUME_GET_IFACE (volume); in g_volume_mount()
372 if (iface->mount_fn == NULL) in g_volume_mount()
381 (* iface->mount_fn) (volume, flags, mount_operation, cancellable, callback, user_data); in g_volume_mount()
405 GVolumeIface *iface; in g_volume_mount_finish() local
417 iface = G_VOLUME_GET_IFACE (volume); in g_volume_mount_finish()
418 return (* iface->mount_finish) (volume, result, error); in g_volume_mount_finish()
440 GVolumeIface *iface; in g_volume_eject() local
444 iface = G_VOLUME_GET_IFACE (volume); in g_volume_eject()
446 if (iface->eject == NULL) in g_volume_eject()
455 (* iface->eject) (volume, flags, cancellable, callback, user_data); in g_volume_eject()
474 GVolumeIface *iface; in g_volume_eject_finish() local
486 iface = G_VOLUME_GET_IFACE (volume); in g_volume_eject_finish()
487 return (* iface->eject_finish) (volume, result, error); in g_volume_eject_finish()
507 GVolumeIface *iface; in g_volume_get_identifier() local
512 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_identifier()
514 if (iface->get_identifier == NULL) in g_volume_get_identifier()
517 return (* iface->get_identifier) (volume, kind); in g_volume_get_identifier()
534 GVolumeIface *iface; in g_volume_enumerate_identifiers() local
537 iface = G_VOLUME_GET_IFACE (volume); in g_volume_enumerate_identifiers()
539 if (iface->enumerate_identifiers == NULL) in g_volume_enumerate_identifiers()
542 return (* iface->enumerate_identifiers) (volume); in g_volume_enumerate_identifiers()
587 GVolumeIface *iface; in g_volume_get_activation_root() local
590 iface = G_VOLUME_GET_IFACE (volume); in g_volume_get_activation_root()
592 if (iface->get_activation_root == NULL) in g_volume_get_activation_root()
595 return (* iface->get_activation_root) (volume); in g_volume_get_activation_root()