| Top |  |  |  |  | 
| const gchar * | udisks_crypttab_entry_get_name () | 
| const gchar * | udisks_crypttab_entry_get_device () | 
| const gchar * | udisks_crypttab_entry_get_passphrase_path () | 
| const gchar * | udisks_crypttab_entry_get_options () | 
| gint | udisks_crypttab_entry_compare () | 
| UDisksCrypttabMonitor * | udisks_crypttab_monitor_new () | 
| GList * | udisks_crypttab_monitor_get_entries () | 
const gchar *
udisks_crypttab_entry_get_name (UDisksCrypttabEntry *entry);
Gets the name field of entry
.
const gchar *
udisks_crypttab_entry_get_device (UDisksCrypttabEntry *entry);
Gets the device field of entry
.
const gchar *
udisks_crypttab_entry_get_passphrase_path
                               (UDisksCrypttabEntry *entry);
Gets the passphrase path field of entry
.
const gchar *
udisks_crypttab_entry_get_options (UDisksCrypttabEntry *entry);
Gets the options field of entry
.
gint udisks_crypttab_entry_compare (UDisksCrypttabEntry *entry,UDisksCrypttabEntry *other_entry);
Comparison function for comparing two UDisksCrypttabEntry objects.
UDisksCrypttabMonitor *
udisks_crypttab_monitor_new (void);
Creates a new UDisksCrypttabMonitor object.
Signals are emitted in the 
GList *
udisks_crypttab_monitor_get_entries (UDisksCrypttabMonitor *monitor);
Gets all /etc/crypttab entries
 A list of UDisksCrypttabEntry objects that must be freed with g_list_free() after each element has been freed with g_object_unref(). 
[transfer full][element-type UDisksCrypttabEntry]
typedef struct _UDisksCrypttabEntry UDisksCrypttabEntry;
The UDisksCrypttabEntry structure contains only private data and should only be accessed using the provided API.
typedef struct _UDisksCrypttabMonitor UDisksCrypttabMonitor;
The UDisksCrypttabMonitor structure contains only private data and should only be accessed using the provided API.
“entry-added” signalvoid user_function (UDisksCrypttabMonitor *monitor, UDisksCrypttabEntry *entry, gpointer user_data)
Emitted when a crypttab entry is added.
This signal is emitted in the
thread-default main loopthat monitor
 was created in.
| monitor | ||
| entry | The UDisksCrypttabEntry that was added. | |
| user_data | user data set when the signal handler was connected. | 
Flags: Has Details
“entry-removed” signalvoid user_function (UDisksCrypttabMonitor *monitor, UDisksCrypttabEntry *entry, gpointer user_data)
Emitted when a crypttab entry is removed.
This signal is emitted in the
thread-default main loopthat monitor
 was created in.
| monitor | ||
| entry | The UDisksCrypttabEntry that was removed. | |
| user_data | user data set when the signal handler was connected. | 
Flags: Has Details