Home
last modified time | relevance | path

Searched refs:persistent_id (Results 1 – 25 of 395) sorted by relevance

12345678910>>...16

/dports/graphics/blender/blender-2.91.0/source/blender/io/common/intern/
H A Dobject_identifier.cc33 const PersistentID &persistent_id) in ObjectIdentifier() argument
34 : object(object), duplicated_by(duplicated_by), persistent_id(persistent_id) in ObjectIdentifier()
39 : object(other.object), duplicated_by(other.duplicated_by), persistent_id(other.persistent_id) in ObjectIdentifier()
58 return ObjectIdentifier(context->object, context->duplicator, context->persistent_id); in for_hierarchy_context()
95 return obj_ident_a.persistent_id < obj_ident_b.persistent_id; in operator <()
111 return obj_ident_a.persistent_id == obj_ident_b.persistent_id; in operator ==()
H A Ddupli_persistent_id.cc37 persistent_id_[index] = dupli_ob->persistent_id[index]; in PersistentID()
151 std::ostream &operator<<(std::ostream &os, const PersistentID &persistent_id) in operator <<() argument
153 if (persistent_id.persistent_id_[0] == INT_MAX) { in operator <<()
157 const PersistentID::PIDArray &pid_array = persistent_id.persistent_id_; in operator <<()
/dports/www/py-django-otp/django-otp-1.0.4/src/django_otp/
H A Dmiddleware.py42 persistent_id = request.session.get(DEVICE_ID_SESSION_KEY)
43 device = self._device_from_persistent_id(persistent_id) if persistent_id else None
55 def _device_from_persistent_id(self, persistent_id): argument
60 if persistent_id.count('.') > 1:
61 parts = persistent_id.split('.')
62 persistent_id = '.'.join((parts[-3], parts[-1]))
64 device = Device.from_persistent_id(persistent_id)
/dports/net/pecl-zmq/zmq-1.1.3/tests/
H A Dzeromq_test_helper.inc6 function create_server($persistent_id = null)
9 $server = $context->getSocket(ZMQ::SOCKET_REP, $persistent_id)
14 function create_client($persistent_id = null)
17 $client = $context->getSocket(ZMQ::SOCKET_REQ, $persistent_id)
23 function bind_callback(ZMQSocket $socket, $persistent_id = null)
/dports/graphics/blender/blender-2.91.0/intern/cycles/blender/
H A Dblender_particles.cpp46 BL::Array<int, OBJECT_PERSISTENT_ID_SIZE> persistent_id = b_instance.persistent_id(); in sync_dupli_particle() local
48 if (persistent_id[0] >= b_psys.particles.length()) in sync_dupli_particle()
52 ParticleSystemKey key(b_ob, persistent_id); in sync_dupli_particle()
69 BL::Particle b_pa = b_psys.particles[persistent_id[0]]; in sync_dupli_particle()
72 pa.index = persistent_id[0]; in sync_dupli_particle()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/google_apis/gcm/engine/
H A Dmcs_client.cc124 std::string persistent_id; member
338 << original_packet->persistent_id; in SendMessage()
340 SetPersistentId(original_packet->persistent_id, in SendMessage()
343 original_packet->persistent_id, message, in SendMessage()
352 packet_info->persistent_id = persistent_id; in SendMessage()
355 persistent_id, in SendMessage()
498 if (!packet->persistent_id.empty()) in ResetStateAndBuildLoginRequest()
546 DCHECK(!packet->persistent_id.empty()); in MaybeSendMessage()
558 if (!packet->persistent_id.empty()) in MaybeSendMessage()
674 if (!persistent_id.empty()) { in HandlePacketFromWire()
[all …]
H A Dgcm_store_impl.h65 void AddIncomingMessage(const std::string& persistent_id,
67 void RemoveIncomingMessage(const std::string& persistent_id,
73 bool AddOutgoingMessage(const std::string& persistent_id,
76 void OverwriteOutgoingMessage(const std::string& persistent_id,
79 void RemoveOutgoingMessage(const std::string& persistent_id,
H A Dgcm_store.h104 virtual void AddIncomingMessage(const std::string& persistent_id,
106 virtual void RemoveIncomingMessage(const std::string& persistent_id,
115 virtual bool AddOutgoingMessage(const std::string& persistent_id,
118 virtual void OverwriteOutgoingMessage(const std::string& persistent_id,
121 virtual void RemoveOutgoingMessage(const std::string& persistent_id,
/dports/www/chromium-legacy/chromium-88.0.4324.182/google_apis/gcm/engine/
H A Dmcs_client.cc124 std::string persistent_id; member
338 << original_packet->persistent_id; in SendMessage()
340 SetPersistentId(original_packet->persistent_id, in SendMessage()
343 original_packet->persistent_id, message, in SendMessage()
352 packet_info->persistent_id = persistent_id; in SendMessage()
355 persistent_id, in SendMessage()
498 if (!packet->persistent_id.empty()) in ResetStateAndBuildLoginRequest()
546 DCHECK(!packet->persistent_id.empty()); in MaybeSendMessage()
558 if (!packet->persistent_id.empty()) in MaybeSendMessage()
674 if (!persistent_id.empty()) { in HandlePacketFromWire()
[all …]
H A Dgcm_store_impl.h65 void AddIncomingMessage(const std::string& persistent_id,
67 void RemoveIncomingMessage(const std::string& persistent_id,
73 bool AddOutgoingMessage(const std::string& persistent_id,
76 void OverwriteOutgoingMessage(const std::string& persistent_id,
79 void RemoveOutgoingMessage(const std::string& persistent_id,
H A Dgcm_store.h104 virtual void AddIncomingMessage(const std::string& persistent_id,
106 virtual void RemoveIncomingMessage(const std::string& persistent_id,
115 virtual bool AddOutgoingMessage(const std::string& persistent_id,
118 virtual void OverwriteOutgoingMessage(const std::string& persistent_id,
121 virtual void RemoveOutgoingMessage(const std::string& persistent_id,
/dports/databases/pecl-memcached/php-memcached-058e9f5/tests/
H A Dconfig.inc17 function memc_create_instance ($host, $port, array $opts = array (), $persistent_id = null)
19 $memcached = new Memcached($persistent_id);
30 function memc_get_instance (array $opts = array (), $persistent_id = null)
32 return memc_create_instance(MEMC_SERVER_HOST, MEMC_SERVER_PORT, $opts, $persistent_id);
35 function memc_get_sasl_instance (array $opts = array (), $persistent_id = null)
37 return memc_create_instance(MEMC_SASL_SERVER_HOST, MEMC_SASL_SERVER_PORT, $opts, $persistent_id);
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/pluginsimpl/local/deprecate/
H A DPluginDeprecation.java112 String persistent_id = context + ":" + identifier; in call() local
123 (!persistent_notify || !persistent_warnings.contains(persistent_id)) in call()
130 if (!persistent_notify && persistent_warnings.remove(persistent_id)) { in call()
182 …Debug.out(new PluginDeprecationException("Deprecated plugin call - " + persistent_id).fillInStackT… in call()
186 persistent_warnings.add(persistent_id); in call()
192 throw new PluginDeprecationException(persistent_id); in call()
/dports/devel/pecl-swoole/swoole-4.8.5/thirdparty/php/streams/
H A Dplain_wrapper.c128 _sw_php_stream_fopen_from_fd((fd), (mode), (persistent_id) STREAMS_REL_CC)
130 _sw_php_stream_fopen_from_fd_int((fd), (mode), (persistent_id) STREAMS_CC)
132 _sw_php_stream_fopen_from_fd_int((fd), (mode), (persistent_id) STREAMS_REL_CC)
775 char *persistent_id = NULL; in stream_fopen_rel() local
794 switch (php_stream_from_persistent_id(persistent_id, &ret)) { in stream_fopen_rel()
803 efree(persistent_id); in stream_fopen_rel()
813 ret = stream_fopen_from_fd_rel(fd, mode, persistent_id); in stream_fopen_rel()
818 if (persistent_id) { in stream_fopen_rel()
819 efree(persistent_id); in stream_fopen_rel()
852 if (persistent_id) { in stream_fopen_rel()
[all …]
/dports/databases/zodb/ZODB-5.6.0/src/ZODB/
H A D_compat.py76 def PersistentPickler(persistent_id, *args, **kwargs): argument
86 p.inst_persistent_id = persistent_id
92 p.persistent_id = persistent_id
/dports/www/mod_php80/php-8.0.15/main/streams/
H A Dphp_stream_plain_wrapper.h35 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
36 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
H A Dphp_stream_transport.h28 const char *persistent_id, int options, int flags,
47 int flags, const char *persistent_id,
54 #define php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, est… argument
55 …_php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, eco…
/dports/www/mod_php81/php-8.1.1/main/streams/
H A Dphp_stream_plain_wrapper.h35 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
36 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
H A Dphp_stream_transport.h28 const char *persistent_id, int options, int flags,
47 int flags, const char *persistent_id,
54 #define php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, est… argument
55 …_php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, eco…
/dports/lang/php74/php-7.4.27/main/streams/
H A Dphp_stream_plain_wrapper.h37 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
38 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
/dports/lang/php73/php-7.3.33/main/streams/
H A Dphp_stream_plain_wrapper.h37 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
38 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
/dports/lang/php81/php-8.1.1/main/streams/
H A Dphp_stream_plain_wrapper.h35 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
36 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
/dports/lang/php80/php-8.0.15/main/streams/
H A Dphp_stream_plain_wrapper.h35 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
36 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
/dports/www/mod_php74/php-7.4.27/main/streams/
H A Dphp_stream_plain_wrapper.h37 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
38 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument
/dports/www/mod_php73/php-7.3.33/main/streams/
H A Dphp_stream_plain_wrapper.h37 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
38 …define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), ( argument

12345678910>>...16