Home
last modified time | relevance | path

Searched refs:conn_obj (Results 1 – 16 of 16) sorted by relevance

/dports/net-p2p/py-nicotine-plus/nicotine-plus-3.2.0/pynicotine/
H A Dslskproto.py1272 self.process_server_input(conn_obj, conn_obj.ibuf)
1275 self.process_peer_init_input(conn_obj, conn_obj.ibuf)
1277 elif conn_obj.init is not None and conn_obj.init.conn_type == 'P':
1278 self.process_peer_input(conn_obj, conn_obj.ibuf)
1280 elif conn_obj.init is not None and conn_obj.init.conn_type == 'F':
1281 self.process_file_input(conn_obj, conn_obj.ibuf)
1283 elif conn_obj.init is not None and conn_obj.init.conn_type == 'D':
1284 self.process_distrib_input(conn_obj, conn_obj.ibuf)
1384 conn_obj.lastreadlength = conn_obj.lastreadlength * 2
1412 conn_obj.obuf = conn_obj.obuf[bytes_send:]
[all …]
/dports/devel/pydbus-common/dbus-python-1.2.18/dbus_bindings/
H A Dconn-methods.c38 Connection *conn_obj = NULL; in _object_path_unregister() local
42 if (!conn_obj) goto out; in _object_path_unregister()
43 TRACE(conn_obj); in _object_path_unregister()
62 Py_CLEAR(conn_obj); in _object_path_unregister()
78 Connection *conn_obj = NULL; in _object_path_message() local
91 if (!conn_obj) { in _object_path_message()
95 TRACE(conn_obj); in _object_path_message()
127 Py_CLEAR(conn_obj); in _object_path_message()
162 if (!conn_obj) { in _filter_message()
167 TRACE(conn_obj); in _filter_message()
[all …]
H A Dserver.c206 PyObject *conn_obj; in DBusPyServer_new_connection_cb() local
212 conn_obj = PyObject_CallFunctionObjArgs((PyObject *)conn_class, in DBusPyServer_new_connection_cb()
216 if (!conn_obj) in DBusPyServer_new_connection_cb()
219 result = PyObject_CallFunctionObjArgs(method, conn_obj, NULL); in DBusPyServer_new_connection_cb()
220 Py_CLEAR (conn_obj); in DBusPyServer_new_connection_cb()
/dports/devel/py-dbus/dbus-python-1.2.18/dbus_bindings/
H A Dconn-methods.c38 Connection *conn_obj = NULL; in _object_path_unregister() local
42 if (!conn_obj) goto out; in _object_path_unregister()
43 TRACE(conn_obj); in _object_path_unregister()
62 Py_CLEAR(conn_obj); in _object_path_unregister()
78 Connection *conn_obj = NULL; in _object_path_message() local
91 if (!conn_obj) { in _object_path_message()
95 TRACE(conn_obj); in _object_path_message()
127 Py_CLEAR(conn_obj); in _object_path_message()
162 if (!conn_obj) { in _filter_message()
167 TRACE(conn_obj); in _filter_message()
[all …]
H A Dserver.c206 PyObject *conn_obj; in DBusPyServer_new_connection_cb() local
212 conn_obj = PyObject_CallFunctionObjArgs((PyObject *)conn_class, in DBusPyServer_new_connection_cb()
216 if (!conn_obj) in DBusPyServer_new_connection_cb()
219 result = PyObject_CallFunctionObjArgs(method, conn_obj, NULL); in DBusPyServer_new_connection_cb()
220 Py_CLEAR (conn_obj); in DBusPyServer_new_connection_cb()
/dports/databases/py-alembic14/alembic-1.4.3/alembic/autogenerate/
H A Dcompare.py682 conn_obj = conn_idx
684 conn_obj = conn_uq
686 conn_obj = conn_names[existing_name]
688 if conn_obj.is_index != metadata_obj.is_index:
689 obj_removed(conn_obj)
698 if conn_obj.sig != metadata_obj.sig:
704 obj_changed(conn_obj, metadata_obj, msg)
707 conn_obj = conn_names[removed_name]
708 if not conn_obj.is_index and conn_obj.sig in unnamed_metadata_uniques:
712 conn_obj.sig not in metadata_indexes_by_sig
[all …]
/dports/graphics/drm_info/drm_info-2.3.0/
H A Djson.c521 struct json_object *conn_obj = json_object_new_object(); in connectors_info() local
523 json_object_object_add(conn_obj, "id", in connectors_info()
525 json_object_object_add(conn_obj, "type", in connectors_info()
527 json_object_object_add(conn_obj, "status", in connectors_info()
529 json_object_object_add(conn_obj, "phy_width", in connectors_info()
531 json_object_object_add(conn_obj, "phy_height", in connectors_info()
533 json_object_object_add(conn_obj, "subpixel", in connectors_info()
535 json_object_object_add(conn_obj, "encoder_id", in connectors_info()
550 json_object_object_add(conn_obj, "modes", modes_arr); in connectors_info()
554 json_object_object_add(conn_obj, "properties", props_obj); in connectors_info()
[all …]
/dports/databases/py-alembic/alembic-1.7.5/alembic/autogenerate/
H A Dcompare.py778 if not conn_obj.is_index and conn_obj.sig in unnamed_metadata_uniques:
782 conn_obj.sig not in metadata_indexes_by_sig
789 obj_removed(conn_obj)
797 conn_obj = conn_idx
799 conn_obj = conn_uq
801 conn_obj = conn_names[existing_name]
803 if conn_obj.is_index != metadata_obj.is_index:
804 obj_removed(conn_obj)
808 if conn_obj.is_unique != metadata_obj.is_unique:
813 if conn_obj.sig != metadata_obj.sig:
[all …]
/dports/databases/py-PyGreSQL/PyGreSQL-5.2/
H A Dpgmodule.c217 connObject *conn_obj; in pg_connect() local
255 if (!(conn_obj = PyObject_New(connObject, &connType))) { in pg_connect()
260 conn_obj->valid = 1; in pg_connect()
261 conn_obj->cnx = NULL; in pg_connect()
262 conn_obj->date_format = date_format; in pg_connect()
263 conn_obj->cast_hook = NULL; in pg_connect()
264 conn_obj->notice_receiver = NULL; in pg_connect()
302 conn_obj->cnx = nowait ? PQconnectStartParams(keywords, values, 1) : in pg_connect()
306 if (PQstatus(conn_obj->cnx) == CONNECTION_BAD) { in pg_connect()
308 Py_XDECREF(conn_obj); in pg_connect()
[all …]
/dports/audio/cadence/Cadence-0.9.1/src/
H A Dcatarina.py818 conn_obj = [None, None, None]
819 conn_obj[iConnId] = connection_id
820 conn_obj[iConnOutput] = port_out_id
821 conn_obj[iConnInput] = port_in_id
823 self.m_connection_list.append(conn_obj)
991 conn_obj = [None, None, None]
1209 conn_obj = [None, None, None]
1210 conn_obj[iConnId] = connection_id
1211 conn_obj[iConnOutput] = port_out_id
1212 conn_obj[iConnInput] = port_in_id
[all …]
/dports/misc/xiphos/xiphos-4.2.1/src/gui/
H A Dutilities.h62 GObject *conn_obj,
/dports/misc/xiphos/xiphos-4.2.1/src/gtk/
H A Dutilities.c245 GObject *conn_obj, gboolean conn_after, in gui_glade_signal_connect_func() argument
263 if (conn_obj) { in gui_glade_signal_connect_func()
266 handler_func, conn_obj, in gui_glade_signal_connect_func()
270 handler_func, conn_obj, in gui_glade_signal_connect_func()
/dports/devel/py-python-dbusmock/python-dbusmock-0.25.0/dbusmock/templates/
H A Dnetworkmanager.py610 conn_obj = dbusmock.get_object(connection_device)
611 settings = conn_obj.settings
/dports/security/amavisd-new/amavis-v2.12.0/
H A Damavisd5330 my $conn = $msginfo->conn_obj;
11427 my $conn = $msginfo->conn_obj;
11616 $notification->conn_obj($msginfo->conn_obj);
14258 my $conn = $msginfo->conn_obj;
16230 $conn = $msginfo->conn_obj;
17483 $quar_msg->conn_obj($msginfo->conn_obj);
18071 $notification->conn_obj($msginfo->conn_obj);
18171 $notification->conn_obj($msginfo->conn_obj);
21546 $msginfo->conn_obj($conn);
24246 my $conn = $msginfo->conn_obj;
[all …]
H A Damavisd-new-courier.patch227 + $self->{msginfo}->conn_obj($conn);
H A DRELEASE_NOTES4641 (as this information is available through $msginfo->conn_obj), these