| /f-stack/freebsd/contrib/openzfs/module/zcommon/ |
| H A D | zfs_namecheck.c | 118 *what = *loc; in zfs_component_namecheck() 146 *what = path[0]; in permset_namecheck() 186 EQUIV(why == NULL, what == NULL); in entity_namecheck() 231 *what = *loc; in entity_namecheck() 302 int ret = entity_namecheck(path, why, what); in dataset_namecheck() 307 *what = '#'; in dataset_namecheck() 321 int ret = entity_namecheck(path, why, what); in bookmark_namecheck() 326 *what = '#'; in bookmark_namecheck() 340 int ret = entity_namecheck(path, why, what); in snapshot_namecheck() 345 *what = '@'; in snapshot_namecheck() [all …]
|
| /f-stack/freebsd/sys/ |
| H A D | rangelock.h | 86 void _rangelock_cookie_assert(void *cookie, int what, const char *file, 91 #define rangelock_cookie_assert_(cookie, what, file, line) \ argument 92 _rangelock_cookie_assert((cookie), (what), (file), (line)) 94 #define rangelock_cookie_assert_(cookie, what, file, line) (void)0 argument 97 #define rangelock_cookie_assert(cookie, what) \ argument 98 rangelock_cookie_assert_((cookie), (what), __FILE__, __LINE__)
|
| H A D | rmlock.h | 71 void _rm_assert(const struct rmlock *rm, int what, const char *file, 131 #define rm_assert(rm, what) _rm_assert((rm), (what), LOCK_FILE, LOCK_LINE) argument 133 #define rm_assert(rm, what) argument
|
| H A D | sx.h | 125 void _sx_assert(const struct sx *sx, int what, const char *file, int line); 230 #define sx_assert_(sx, what, file, line) \ argument 231 _sx_assert((sx), (what), (file), (line)) 233 #define sx_assert_(sx, what, file, line) (void)0 argument 242 #define sx_assert(sx, what) sx_assert_((sx), (what), __FILE__, __LINE__) argument
|
| H A D | lockmgr.h | 81 void _lockmgr_assert(const struct lock *lk, int what, const char *file, int line); 143 #define lockmgr_assert(lk, what) \ argument 144 _lockmgr_assert((lk), (what), LOCK_FILE, LOCK_LINE) 146 #define lockmgr_assert(lk, what) argument
|
| H A D | rwlock.h | 152 void __rw_assert(const volatile uintptr_t *c, int what, const char *file, 292 #define rw_assert(rw, what) _rw_assert((rw), (what), LOCK_FILE, LOCK_LINE) argument 294 #define rw_assert(rw, what) argument
|
| H A D | mutex.h | 132 void __mtx_assert(const volatile uintptr_t *c, int what, const char *file, 438 #define mtx_assert_(m, what, file, line) \ argument 439 _mtx_assert((m), (what), (file), (line)) 444 #define mtx_assert_(m, what, file, line) (void)0 argument 460 #define mtx_assert(m, what) \ argument 461 mtx_assert_((m), (what), __FILE__, __LINE__)
|
| /f-stack/app/redis-5.0.5/deps/lua/etc/ |
| H A D | strict.lua | 19 local function what () function 21 return d and d.what or "C" 26 local w = what() 36 if not mt.__declared[n] and what() ~= "C" then
|
| /f-stack/freebsd/kern/ |
| H A D | kern_syscalls.c | 165 syscall_module_handler(struct module *mod, int what, void *arg) in syscall_module_handler() argument 168 return (kern_syscall_module_handler(sysent, mod, what, arg)); in syscall_module_handler() 173 int what, void *arg) in kern_syscall_module_handler() argument 179 switch (what) { in kern_syscall_module_handler() 193 error = data->chainevh(mod, what, data->chainarg); in kern_syscall_module_handler() 204 error = data->chainevh(mod, what, data->chainarg); in kern_syscall_module_handler() 213 return (data->chainevh(mod, what, data->chainarg)); in kern_syscall_module_handler()
|
| H A D | subr_disk.c | 41 disk_err(struct bio *bp, const char *what, int blkdone, int nl) in disk_err() argument 46 printf("%s: %s ", devtoname(bp->bio_dev), what); in disk_err() 49 bp->bio_disk->d_name, bp->bio_disk->d_unit, what); in disk_err() 51 printf("disk??: %s ", what); in disk_err()
|
| H A D | kern_rwlock.c | 159 #define __rw_assert(c, what, file, line) argument 163 assert_rw(const struct lock_object *lock, int what) in assert_rw() argument 166 rw_assert((const struct rwlock *)lock, what); in assert_rw() 1454 switch (what) { in __rw_assert() 1462 witness_assert(&rw->lock_object, what, file, line); in __rw_assert() 1473 rw->lock_object.lo_name, (what & RA_RLOCKED) ? in __rw_assert() 1478 if (what & RA_NOTRECURSED) in __rw_assert() 1482 } else if (what & RA_RECURSED) in __rw_assert() 1495 if (what & RA_NOTRECURSED) in __rw_assert() 1498 } else if (what & RA_RECURSED) in __rw_assert() [all …]
|
| H A D | kern_rmlock.c | 75 #define _rm_assert(c, what, file, line) argument 78 static void assert_rm(const struct lock_object *lock, int what); 117 assert_rm(const struct lock_object *lock, int what) in assert_rm() argument 120 rm_assert((const struct rmlock *)lock, what); in assert_rm() 752 switch (what) { in _rm_assert() 764 if (what & RA_RLOCKED) in _rm_assert() 767 if (what & RA_RECURSED) in _rm_assert() 779 rm->lock_object.lo_name, (what & RA_RLOCKED) ? in _rm_assert() 782 if (what & RA_NOTRECURSED) in _rm_assert() 785 } else if (what & RA_RECURSED) in _rm_assert() [all …]
|
| H A D | kern_sx.c | 117 static void assert_sx(const struct lock_object *lock, int what); 142 #define _sx_assert(sx, what, file, line) argument 178 assert_sx(const struct lock_object *lock, int what) in assert_sx() argument 181 sx_assert((const struct sx *)lock, what); in assert_sx() 1413 switch (what) { in _sx_assert() 1425 witness_assert(&sx->lock_object, what, file, line); in _sx_assert() 1441 if (what & SA_NOTRECURSED) in _sx_assert() 1445 } else if (what & SA_RECURSED) in _sx_assert() 1458 if (what & SA_NOTRECURSED) in _sx_assert() 1461 } else if (what & SA_RECURSED) in _sx_assert() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | ldebug.c | 194 ar->what = "C"; in funcinfo() 201 ar->what = (ar->linedefined == 0) ? "main" : "Lua"; in funcinfo() 226 static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar, in auxgetinfo() argument 229 for (; *what; what++) { in auxgetinfo() 230 switch (*what) { in auxgetinfo() 284 if (*what == '>') { in lua_getinfo() 288 what++; /* skip the '>' */ in lua_getinfo() 297 status = auxgetinfo(L, what, ar, cl, ci); in lua_getinfo() 298 if (strchr(what, 'f')) { in lua_getinfo() 303 if (strchr(what, 'L')) in lua_getinfo() [all …]
|
| H A D | lmem.c | 46 int limit, const char *what) { in luaM_growaux_() argument 51 luaG_runerror(L, "too many %s (limit is %d)", what, limit); in luaM_growaux_()
|
| /f-stack/app/redis-5.0.5/deps/lua/test/ |
| H A D | trace-calls.lua | 16 if t.what=="main" then 22 elseif t.what=="Lua" then 26 io.write(event," ",t.name or "(C)"," [",t.what,"] ")
|
| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | ldebug.c | 155 ar->what = "C"; in funcinfo() 161 ar->what = (ar->linedefined == 0) ? "main" : "Lua"; in funcinfo() 169 ar->what = "tail"; in info_tailcall() 193 static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar, in auxgetinfo() argument 200 for (; *what; what++) { in auxgetinfo() 201 switch (*what) { in auxgetinfo() 237 if (*what == '>') { in lua_getinfo() 240 what++; /* skip the '>' */ in lua_getinfo() 249 status = auxgetinfo(L, what, ar, f, ci); in lua_getinfo() 250 if (strchr(what, 'f')) { in lua_getinfo() [all …]
|
| /f-stack/freebsd/netinet/cc/ |
| H A D | cc_module.h | 59 #define CCV(ccv, what) (ccv)->ccvc.tcp->what argument
|
| /f-stack/tools/libutil/ |
| H A D | login_class.c | 51 const char *what; member 82 for (lr = resources; lr->what != NULL; ++lr) { in setclassresources() 98 syslog(LOG_ERR, "getting %s resource limit: %m", lr->what); in setclassresources() 105 sprintf(name_cur, "%s-cur", lr->what); in setclassresources() 106 sprintf(name_max, "%s-max", lr->what); in setclassresources() 108 rcur = (*lr->who)(lc, lr->what, rcur, rcur); in setclassresources() 109 rmax = (*lr->who)(lc, lr->what, rmax, rmax); in setclassresources() 114 syslog(LOG_WARNING, "set class '%s' resource limit %s: %m", lc->lc_class, lr->what); in setclassresources()
|
| /f-stack/dpdk/app/test-pmd/ |
| H A D | icmpecho.c | 224 ether_addr_dump(const char *what, const struct rte_ether_addr *ea) in ether_addr_dump() argument 229 if (what) in ether_addr_dump() 230 printf("%s", what); in ether_addr_dump() 235 ipv4_addr_dump(const char *what, uint32_t be_ipv4_addr) in ipv4_addr_dump() argument 240 if (what) in ipv4_addr_dump() 241 printf("%s", what); in ipv4_addr_dump()
|
| /f-stack/dpdk/drivers/net/szedata2/ |
| H A D | rte_eth_szedata2.h | 35 #define RTE_SZE2_ALIGN8(what) RTE_ALIGN(what, 8) argument
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | t_hash.c | 385 void hashTypeCurrentFromZiplist(hashTypeIterator *hi, int what, in hashTypeCurrentFromZiplist() argument 394 if (what & OBJ_HASH_KEY) { in hashTypeCurrentFromZiplist() 406 sds hashTypeCurrentFromHashTable(hashTypeIterator *hi, int what) { in hashTypeCurrentFromHashTable() argument 409 if (what & OBJ_HASH_KEY) { in hashTypeCurrentFromHashTable() 429 hashTypeCurrentFromZiplist(hi, what, vstr, vlen, vll); in hashTypeCurrentObject() 431 sds ele = hashTypeCurrentFromHashTable(hi, what); in hashTypeCurrentObject() 441 sds hashTypeCurrentObjectNewSds(hashTypeIterator *hi, int what) { in hashTypeCurrentObjectNewSds() argument 446 hashTypeCurrentObject(hi,what,&vstr,&vlen,&vll); in hashTypeCurrentObjectNewSds() 751 static void addHashIteratorCursorToReply(client *c, hashTypeIterator *hi, int what) { in addHashIteratorCursorToReply() argument 757 hashTypeCurrentFromZiplist(hi, what, &vstr, &vlen, &vll); in addHashIteratorCursorToReply() [all …]
|
| /f-stack/freebsd/mips/broadcom/ |
| H A D | bcm_mipsvar.h | 109 #define BCM_MIPS_LOCK_ASSERT(sc, what) mtx_assert(&(sc)->mtx, what) argument
|
| /f-stack/freebsd/mips/cavium/ |
| H A D | uart_dev_oct16550.c | 159 oct16550_drain (struct uart_bas *bas, int what) in oct16550_drain() argument 165 if (what & UART_DRAIN_TRANSMITTER) { in oct16550_drain() 180 if (what & UART_DRAIN_RECEIVER) { in oct16550_drain() 209 oct16550_flush (struct uart_bas *bas, int what) in oct16550_flush() argument 214 if (what & UART_FLUSH_TRANSMITTER) in oct16550_flush() 216 if (what & UART_FLUSH_RECEIVER) in oct16550_flush() 486 oct16550_bus_flush (struct uart_softc *sc, int what) in oct16550_bus_flush() argument 495 oct16550_flush(bas, what); in oct16550_bus_flush() 500 error = oct16550_drain(bas, what); in oct16550_bus_flush()
|
| /f-stack/freebsd/x86/bios/ |
| H A D | smbios.c | 193 smbios_modevent (mod, what, arg) in smbios_modevent() argument 195 int what; 202 switch (what) {
|