Home
last modified time | relevance | path

Searched refs:ownerid (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/dports/www/moodle310/moodle/cache/classes/
H A Dinterfaces.php247 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
251 public function acquire_lock($key, $ownerid); argument
257 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
261 public function check_lock_state($key, $ownerid); argument
267 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
271 public function release_lock($key, $ownerid); argument
485 …* @param string $ownerid An unique identifier for the owner of this lock. It is entirely optional …
490 public function lock($key, $ownerid, $block = false); argument
500 public function unlock($key, $ownerid, $forceunlock = false); argument
510 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
[all …]
/dports/www/moodle311/moodle/cache/classes/
H A Dinterfaces.php247 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
251 public function acquire_lock($key, $ownerid); argument
257 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
261 public function check_lock_state($key, $ownerid); argument
267 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
271 public function release_lock($key, $ownerid); argument
485 …* @param string $ownerid An unique identifier for the owner of this lock. It is entirely optional …
490 public function lock($key, $ownerid, $block = false); argument
500 public function unlock($key, $ownerid, $forceunlock = false); argument
510 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
[all …]
/dports/www/moodle39/moodle/cache/classes/
H A Dinterfaces.php247 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
251 public function acquire_lock($key, $ownerid); argument
257 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
261 public function check_lock_state($key, $ownerid); argument
267 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
271 public function release_lock($key, $ownerid); argument
485 …* @param string $ownerid An unique identifier for the owner of this lock. It is entirely optional …
490 public function lock($key, $ownerid, $block = false); argument
500 public function unlock($key, $ownerid, $forceunlock = false); argument
510 …* @param string $ownerid The identifier so we can check if we have the lock or if it is someone el…
[all …]
/dports/www/moodle310/moodle/cache/locks/file/
H A Dlib.php120 * @param string $ownerid A unique identifier for the owner of this lock. Not used by default.
125 public function lock($key, $ownerid, $block = false) { argument
179 * @param string $ownerid A unique identifier for the owner of this lock. Not used by default.
183 public function unlock($key, $ownerid, $forceunlock = false) { argument
203 * @param string $ownerid
205 public function check_state($key, $ownerid) { argument
/dports/www/moodle311/moodle/cache/locks/file/
H A Dlib.php120 * @param string $ownerid A unique identifier for the owner of this lock. Not used by default.
125 public function lock($key, $ownerid, $block = false) { argument
179 * @param string $ownerid A unique identifier for the owner of this lock. Not used by default.
183 public function unlock($key, $ownerid, $forceunlock = false) { argument
203 * @param string $ownerid
205 public function check_state($key, $ownerid) { argument
/dports/www/moodle39/moodle/cache/locks/file/
H A Dlib.php120 * @param string $ownerid A unique identifier for the owner of this lock. Not used by default.
125 public function lock($key, $ownerid, $block = false) { argument
179 * @param string $ownerid A unique identifier for the owner of this lock. Not used by default.
183 public function unlock($key, $ownerid, $forceunlock = false) { argument
203 * @param string $ownerid
205 public function check_state($key, $ownerid) { argument
/dports/www/moodle310/moodle/cache/stores/redis/
H A Dlib.php428 * @param string $ownerid Information to identify owner of lock if acquired.
431 public function acquire_lock($key, $ownerid) { argument
432 return $this->redis->setnx($key, $ownerid);
440 * @param string $ownerid Owner information to check existing lock against.
444 public function check_lock_state($key, $ownerid) { argument
446 if ($result === $ownerid) {
486 * @param string $ownerid Owner information to use.
489 public function release_lock($key, $ownerid) { argument
490 if ($this->check_lock_state($key, $ownerid)) {
/dports/www/moodle311/moodle/cache/stores/redis/
H A Dlib.php428 * @param string $ownerid Information to identify owner of lock if acquired.
431 public function acquire_lock($key, $ownerid) { argument
432 return $this->redis->setnx($key, $ownerid);
440 * @param string $ownerid Owner information to check existing lock against.
444 public function check_lock_state($key, $ownerid) { argument
446 if ($result === $ownerid) {
486 * @param string $ownerid Owner information to use.
489 public function release_lock($key, $ownerid) { argument
490 if ($this->check_lock_state($key, $ownerid)) {
/dports/www/moodle39/moodle/cache/stores/redis/
H A Dlib.php428 * @param string $ownerid Information to identify owner of lock if acquired.
431 public function acquire_lock($key, $ownerid) { argument
432 return $this->redis->setnx($key, $ownerid);
440 * @param string $ownerid Owner information to check existing lock against.
444 public function check_lock_state($key, $ownerid) { argument
446 if ($result === $ownerid) {
486 * @param string $ownerid Owner information to use.
489 public function release_lock($key, $ownerid) { argument
490 if ($this->check_lock_state($key, $ownerid)) {
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-recipes/zookeeper-recipes-lock/src/main/c/src/
H A Dzoo_lock.c56 mutex->ownerid = NULL; in zkr_lock_init()
71 mutex->ownerid = NULL; in zkr_lock_init_cb()
306 mutex->ownerid = strdup(owner_id); in zkr_lock_operation()
396 return (mutex->id != NULL && mutex->ownerid != NULL in zkr_lock_isowner()
397 && (strcmp(mutex->id, mutex->ownerid) == 0)); in zkr_lock_isowner()
401 return mutex->ownerid; in zkr_lock_getid()
412 if (mutex->ownerid) in zkr_lock_destroy()
413 free(mutex->ownerid); in zkr_lock_destroy()
/dports/devel/pecl-zookeeper/zookeeper-1.0.0/
H A Dzoo_lock.c60 mutex->ownerid = NULL;
75 mutex->ownerid = NULL;
314 mutex->ownerid = strdup(owner_id);
412 return (mutex->id != NULL && mutex->ownerid != NULL
413 && (strcmp(mutex->id, mutex->ownerid) == 0));
417 return mutex->ownerid;
428 if (mutex->ownerid)
429 free(mutex->ownerid);
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-recipes/zookeeper-recipes-lock/src/main/c/tests/
H A DTestClient.cc183 int ret = strcmp(leader.id, leader.ownerid); in testlock()
187 CPPUNIT_ASSERT(strcmp(mutex.id, mutex.ownerid) != 0); in testlock()
192 CPPUNIT_ASSERT(strcmp(secondleader.id , secondleader.ownerid) == 0); in testlock()
195 CPPUNIT_ASSERT(strcmp(mutex.id, mutex.ownerid) != 0); in testlock()
/dports/benchmarks/sipp/sipp-3.5.1/src/
H A Dsocketowner.cpp72 this->ownerid = socketowner::nextownerid++; in socketowner()
93 socket_owner_map->insert(long_owner_pair(this->ownerid, this)); in add_owner_to_socket()
103 owner_map::iterator owner_it = socket_owner_map->find(this->ownerid); in remove_owner_from_socket()
/dports/net/p5-VM-EC2/VM-EC2-1.28/lib/VM/EC2/SecurityGroup/
H A DGroupPermission.pm74 my $ownerid= $self->ownerId;
75 my $gname = $userid eq $ownerid ? $name : "$userid/$name";
/dports/www/limesurvey/limesurvey/application/models/
H A DParticipantShare.php334 …$ownerid = App()->db->createCommand()->select('*')->from('{{participants}}')->where('participant_i…
339 $isOwner = $ownerid['owner_uid'] == $userId;
341 …if ($ownerid['owner_uid'] == $data['share_uid'] || (!$permission && !$canEditShared && !$isOwner &…
/dports/www/bolt/bolt-2.2.24/app/view/twig/components/
H A Dpanel-system.twig19 {% set user = getuser( log.ownerid|default('') ) %}
27 {% if log.ownerid == 0 %}
/dports/net/p5-Net-Whois-IP/Net-Whois-IP-1.19/t/
H A Dsample1.output488 |% Types of queries are| ==> POCs, ownerid, CIDR blocks, IP
110 |ownerid| ==> MX-MSCV17-LACNIC
/dports/net-mgmt/nagios-check_bacula9/bacula-9.6.7/examples/vm/
H A Dblabela.exec19 /* Usage: BLABELA volumeid ownerid */
28 /* ownerid = local userid to "own" the */
H A Dblabeli.exec19 /* Usage: BLABELI volumeid ownerid */
28 /* ownerid = local userid to "own" the */
/dports/net-mgmt/nagios-check_bacula11/bacula-11.0.5/examples/vm/
H A Dblabela.exec19 /* Usage: BLABELA volumeid ownerid */
28 /* ownerid = local userid to "own" the */
H A Dblabeli.exec19 /* Usage: BLABELI volumeid ownerid */
28 /* ownerid = local userid to "own" the */
/dports/sysutils/bacula11-client/bacula-11.0.5/examples/vm/
H A Dblabeli.exec19 /* Usage: BLABELI volumeid ownerid */
28 /* ownerid = local userid to "own" the */
H A Dblabela.exec19 /* Usage: BLABELA volumeid ownerid */
28 /* ownerid = local userid to "own" the */
/dports/sysutils/bacula11-server/bacula-11.0.5/examples/vm/
H A Dblabela.exec19 /* Usage: BLABELA volumeid ownerid */
28 /* ownerid = local userid to "own" the */
/dports/sysutils/bacula9-client-static/bacula-9.6.7/examples/vm/
H A Dblabela.exec19 /* Usage: BLABELA volumeid ownerid */
28 /* ownerid = local userid to "own" the */

12345678910>>...14