index.html
Main Page
|
modules.html
Modules
|
namespaces.html
Namespace List
|
hierarchy.html
Class Hierarchy
|
annotated.html
Data Structures
|
dirs.html
Directories
|
files.html
File List
|
namespacemembers.html
Namespace Members
|
functions.html
Data Fields
|
pages.html
Related Pages
dir_000004.html
dbus
dbus-connection-internal.h
00001
/* -*- mode: C; c-file-style: "gnu" -*- */
00002
/* dbus-connection-internal.h DBusConnection internal interfaces
00003
*
00004
* Copyright (C) 2002  Red Hat Inc.
00005
*
00006
* Licensed under the Academic Free License version 2.1
00007
*
00008
* This program is free software; you can redistribute it and/or modify
00009
* it under the terms of the GNU General Public License as published by
00010
* the Free Software Foundation; either version 2 of the License, or
00011
* (at your option) any later version.
00012
*
00013
* This program is distributed in the hope that it will be useful,
00014
* but WITHOUT ANY WARRANTY; without even the implied warranty of
00015
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016
* GNU General Public License for more details.
00017
*
00018
* You should have received a copy of the GNU General Public License
00019
* along with this program; if not, write to the Free Software
00020
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00021
*
00022
*/
00023
#ifndef DBUS_CONNECTION_INTERNAL_H
00024
#define DBUS_CONNECTION_INTERNAL_H
00025
00026
#include <dbus/dbus-internals.h>
00027
#include <dbus/dbus-connection.h>
00028
#include <dbus/dbus-message.h>
00029
#include <dbus/dbus-transport.h>
00030
#include <dbus/dbus-resources.h>
00031
#include <dbus/dbus-list.h>
00032
#include <dbus/dbus-timeout.h>
00033
#include <dbus/dbus-dataslot.h>
00034
00035
group__DBusMacros.html#ga0
DBUS_BEGIN_DECLS
00036
00037
typedef
enum
00038 {
00039   DBUS_ITERATION_DO_WRITING = 1 << 0,
00040   DBUS_ITERATION_DO_READING = 1 << 1,
00041   DBUS_ITERATION_BLOCK      = 1 << 2
00042 } DBusIterationFlags;
00043
00045
#define _DBUS_DEFAULT_TIMEOUT_VALUE (25 * 1000)
00046
00047
void
group__DBusConnectionInternals.html#ga16
_dbus_connection_lock
(
structDBusConnection.html
DBusConnection
*connection);
00048
void
group__DBusConnectionInternals.html#ga17
_dbus_connection_unlock
(
structDBusConnection.html
DBusConnection
*connection);
00049
structDBusConnection.html
DBusConnection
*
group__DBusConnectionInternals.html#ga43
_dbus_connection_ref_unlocked
(
structDBusConnection.html
DBusConnection
*connection);
00050
void
group__DBusConnectionInternals.html#ga44
_dbus_connection_unref_unlocked
(
structDBusConnection.html
DBusConnection
*connection);
00051
group__DBusTypes.html#ga2
dbus_bool_t
_dbus_connection_queue_received_message      (
structDBusConnection.html
DBusConnection
*connection,
00052
structDBusMessage.html
DBusMessage
*message);
00053
void
group__DBusConnectionInternals.html#ga19
_dbus_connection_queue_received_message_link
(
structDBusConnection.html
DBusConnection
*connection,
00054
structDBusList.html
DBusList
*link);
00055
group__DBusTypes.html#ga2
dbus_bool_t
group__DBusConnectionInternals.html#ga21
_dbus_connection_has_messages_to_send_unlocked
(
structDBusConnection.html
DBusConnection
*connection);
00056
structDBusMessage.html
DBusMessage
*
group__DBusConnectionInternals.html#ga23
_dbus_connection_get_message_to_send
(
structDBusConnection.html
DBusConnection
*connection);
00057
void
group__DBusConnectionInternals.html#ga24
_dbus_connection_message_sent
(
structDBusConnection.html
DBusConnection
*connection,
00058
structDBusMessage.html
DBusMessage
*message);
00059
group__DBusTypes.html#ga2
dbus_bool_t
group__DBusConnectionInternals.html#ga26
_dbus_connection_add_watch
(
structDBusConnection.html
DBusConnection
*connection,
00060
structDBusWatch.html
DBusWatch
*watch);
00061
void
group__DBusConnectionInternals.html#ga27
_dbus_connection_remove_watch
(
structDBusConnection.html
DBusConnection
*connection,
00062
structDBusWatch.html
DBusWatch
*watch);
00063
void
group__DBusConnectionInternals.html#ga28
_dbus_connection_toggle_watch
(
structDBusConnection.html
DBusConnection
*connection,
00064
structDBusWatch.html
DBusWatch
*watch,
00065
group__DBusTypes.html#ga2
dbus_bool_t
enabled);
00066
group__DBusTypes.html#ga2
dbus_bool_t
group__DBusConnectionInternals.html#ga46
_dbus_connection_handle_watch
(
structDBusWatch.html
DBusWatch
*watch,
00067
unsigned
int
condition,
00068
void
*data);
00069
group__DBusTypes.html#ga2
dbus_bool_t
group__DBusConnectionInternals.html#ga30
_dbus_connection_add_timeout
(
structDBusConnection.html
DBusConnection
*connection,
00070
structDBusTimeout.html
DBusTimeout
*timeout);
00071
void
group__DBusConnectionInternals.html#ga31
_dbus_connection_remove_timeout
(
structDBusConnection.html
DBusConnection
*connection,
00072
structDBusTimeout.html
DBusTimeout
*timeout);
00073
void
group__DBusConnectionInternals.html#ga32
_dbus_connection_toggle_timeout
(
structDBusConnection.html
DBusConnection
*connection,
00074
structDBusTimeout.html
DBusTimeout
*timeout,
00075
group__DBusTypes.html#ga2
dbus_bool_t
enabled);
00076
structDBusConnection.html
DBusConnection
*
group__DBusConnectionInternals.html#ga42
_dbus_connection_new_for_transport
(
structDBusTransport.html
DBusTransport
*transport);
00077
void
group__DBusConnectionInternals.html#ga41
_dbus_connection_do_iteration_unlocked
(
structDBusConnection.html
DBusConnection
*connection,
00078
unsigned
int
flags,
00079
int
timeout_milliseconds);
00080
00081
structDBusPendingCall.html
DBusPendingCall
*
group__DBusPendingCallInternals.html#ga1
_dbus_pending_call_new
(
structDBusConnection.html
DBusConnection
*connection,
00082
int
timeout_milliseconds,
00083                                                                 DBusTimeoutHandler  timeout_handler);
00084
void
group__DBusPendingCallInternals.html#ga2
_dbus_pending_call_notify
(
structDBusPendingCall.html
DBusPendingCall
*pending);
00085
void
group__DBusConnectionInternals.html#ga37
_dbus_connection_remove_pending_call
(
structDBusConnection.html
DBusConnection
*connection,
00086
structDBusPendingCall.html
DBusPendingCall
*pending);
00087
void
group__DBusConnection.html#ga25
_dbus_connection_block_pending_call
(
structDBusPendingCall.html
DBusPendingCall
*pending);
00088
void
group__DBusConnectionInternals.html#ga38
_dbus_pending_call_complete_and_unlock
(
structDBusPendingCall.html
DBusPendingCall
*pending,
00089
structDBusMessage.html
DBusMessage
*message);
00090
group__DBusTypes.html#ga2
dbus_bool_t
group__DBusConnection.html#ga19
_dbus_connection_send_and_unlock
(
structDBusConnection.html
DBusConnection
*connection,
00091
structDBusMessage.html
DBusMessage
*message,
00092
group__DBusTypes.html#ga3
dbus_uint32_t
*client_serial);
00093
structDBusPendingCall.html
00103
struct
structDBusPendingCall.html
DBusPendingCall
00104 {
structDBusPendingCall.html#o0
00105
structDBusAtomic.html
DBusAtomic
structDBusPendingCall.html#o0
refcount
;
structDBusPendingCall.html#o1
00107
structDBusDataSlotList.html
DBusDataSlotList
structDBusPendingCall.html#o1
slot_list
;
structDBusPendingCall.html#o2
00109
DBusPendingCallNotifyFunction
structDBusPendingCall.html#o2
function
;
structDBusPendingCall.html#o3
00111
structDBusConnection.html
DBusConnection
*
structDBusPendingCall.html#o3
connection
;
structDBusPendingCall.html#o4
00112
structDBusMessage.html
DBusMessage
*
structDBusPendingCall.html#o4
reply
;
structDBusPendingCall.html#o5
00113
structDBusTimeout.html
DBusTimeout
*
structDBusPendingCall.html#o5
timeout
;
structDBusPendingCall.html#o6
00115
structDBusList.html
DBusList
*
structDBusPendingCall.html#o6
timeout_link
;
structDBusPendingCall.html#o7
00117
group__DBusTypes.html#ga3
dbus_uint32_t
structDBusPendingCall.html#o7
reply_serial
;
structDBusPendingCall.html#o8
00119
unsigned
int
structDBusPendingCall.html#o8
completed
: 1;
structDBusPendingCall.html#o9
00120
unsigned
int
structDBusPendingCall.html#o9
timeout_added
: 1;
00121 };
00122
00126
group__DBusMacros.html#ga1
DBUS_END_DECLS
00127
00128
#endif
/* DBUS_CONNECTION_INTERNAL_H */
Generated on Tue Sep 13 01:28:06 2005 for D-BUS by
http://www.doxygen.org/index.html
doxygen
1.4.4
