Home
last modified time | relevance | path

Searched refs:mlock_off (Results 1 – 18 of 18) sorted by relevance

/dports/irc/atheme-services/atheme-7.2.9/modules/chanserv/
H A Dset_mlock.c212 changed = ((newlock_on ^ mc->mlock_on) | (newlock_off ^ mc->mlock_off)); in cs_cmd_set_mlock()
225 mc->mlock_off = (newlock_off & ~mask) | (mc->mlock_off & mask); in cs_cmd_set_mlock()
289 if (mc->mlock_off || *ext_minus) in cs_cmd_set_mlock()
290 …- modebuf), "-%s%s%s%s", flags_to_string(mc->mlock_off), mc->mlock_off & CMODE_KEY ? "k" : "", mc-… in cs_cmd_set_mlock()
H A Dregister.c146 mc->mlock_off |= CMODE_LIMIT; in cs_cmd_register()
148 mc->mlock_off |= CMODE_KEY; in cs_cmd_register()
H A Dmoderate.c245 mc->mlock_off |= CMODE_LIMIT; in cs_cmd_activate()
247 mc->mlock_off |= CMODE_KEY; in cs_cmd_activate()
H A Dinfo.c110 if (mc->mlock_on || mc->mlock_off || mc->mlock_limit || mc->mlock_key || md) in cs_cmd_info()
H A Dmain.c748 if (data->u != NULL && !(mc->mlock_off & CMODE_TOPIC)) in cs_topiccheck()
/dports/irc/atheme-services/atheme-7.2.9/modules/contrib/
H A Dmlocktweaker.c60 target = &mc->mlock_off; in handle_channel_register()
69 mc->mlock_off &= ~mc->mlock_on; in handle_channel_register()
H A Dcs_fregister.c111 mc->mlock_off |= CMODE_LIMIT; in cs_cmd_fregister()
113 mc->mlock_off |= CMODE_KEY; in cs_cmd_fregister()
/dports/irc/atheme-services/atheme-7.2.9/modules/scripting/perl/api/
H A Dchannel.xs46 mc->mlock_off |= CMODE_LIMIT;
48 mc->mlock_off |= CMODE_KEY;
/dports/irc/ergo/ergo-2.8.0/distrib/atheme/
H A Datheme2json.py76 mlock_on, mlock_off = int(parts[5]), int(parts[6])
80 elif flag & mlock_off != 0 and mode in modes:
/dports/irc/atheme-services/atheme-7.2.9/contrib/
H A Ddbread.pl77 mlock_off => $item[7],
H A Danope_convert.c280 athememoff = convert_mlock(ci->mlock_off); in ATHEME_CONVERT_write_channels()
/dports/irc/atheme-services/atheme-7.2.9/libathemecore/
H A Daccount.c1266 if (mc->mlock_off) in mychan_get_mlock()
1270 mowgli_strlcat(buf, flags_to_string(mc->mlock_off), sizeof buf); in mychan_get_mlock()
1271 if (mc->mlock_off & CMODE_LIMIT) in mychan_get_mlock()
1273 if (mc->mlock_off & CMODE_KEY) in mychan_get_mlock()
1317 if (mc->mlock_off) in mychan_get_sts_mlock()
1318 mowgli_strlcat(mlock, flags_to_string(mc->mlock_off), sizeof(mlock)); in mychan_get_sts_mlock()
1319 if (mc->mlock_limit || mc->mlock_off & CMODE_LIMIT) in mychan_get_sts_mlock()
1321 if (mc->mlock_key || mc->mlock_off & CMODE_KEY) in mychan_get_sts_mlock()
H A Dcmode.c903 modes = mychan->chan->modes & mychan->mlock_off; in check_modes()
909 if (mychan->chan->limit && (mychan->mlock_off & CMODE_LIMIT)) in check_modes()
916 if (mychan->chan->key && (mychan->mlock_off & CMODE_KEY)) in check_modes()
/dports/irc/atheme-services/atheme-7.2.9/doc/technical/
H A DMODES73 D mychan_t.mlock_on, mychan_t.mlock_off
76 mychan_t.mlock_off. Key/limit mlocked on do not use CMODE_KEY/CMODE_LIMIT
/dports/irc/anope/anope-2.0.9/modules/database/
H A Ddb_old.cpp1301 PrimitiveExtensibleItem<uint32_t> mlock_on, mlock_off, mlock_limit; member in DBOld
1306 …mlock_on(this, "mlock_on"), mlock_off(this, "mlock_off"), mlock_limit(this, "mlock_limit"), mlock_… in DBOld()
1344 u = mlock_off.Get(ci); in OnUplinkSync()
1348 mlock_off.Unset(ci); in OnUplinkSync()
/dports/irc/atheme-services/atheme-7.2.9/modules/backend/
H A Dcorestorage.c190 db_write_uint(db, mc->mlock_off); in corestorage_db_save()
622 mc->mlock_off = db_sread_uint(db); in corestorage_h_mc()
H A Dflatfile.c374 mc->mlock_off = atoi(strtok(NULL, " ")); in flatfile_db_load()
/dports/irc/atheme-services/atheme-7.2.9/include/
H A Daccount.h169 unsigned int mlock_off; member