/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nfnetlink_cttimeout.c | 84 char *name; in cttimeout_new_timeout() local 93 name = nla_data(cda[CTA_TIMEOUT_NAME]); in cttimeout_new_timeout() 98 if (strncmp(timeout->name, name, CTNL_TIMEOUT_NAME_MAX) != 0) in cttimeout_new_timeout() 145 strcpy(timeout->name, nla_data(cda[CTA_TIMEOUT_NAME])); in cttimeout_new_timeout() 174 if (nla_put_string(skb, CTA_TIMEOUT_NAME, timeout->name) || in ctnl_timeout_fill_info() 243 char *name; in cttimeout_get_timeout() local 255 name = nla_data(cda[CTA_TIMEOUT_NAME]); in cttimeout_get_timeout() 260 if (strncmp(cur->name, name, CTNL_TIMEOUT_NAME_MA in cttimeout_get_timeout() 315 char *name; cttimeout_del_timeout() local 503 ctnl_timeout_find_get(struct net *net, const char *name) ctnl_timeout_find_get() argument [all...] |
/kernel/linux/linux-5.10/fs/erofs/ |
H A D | xattr.c | 164 int (*name)(struct xattr_iter *_it, unsigned int processed, char *buf, member 263 /* 2. handle xattr name (ofs will finally be at the end of name) */ in xattr_foreach() 279 /* handle name */ in xattr_foreach() 280 err = op->name(it, processed, it->kaddr + it->ofs, slice); in xattr_foreach() 329 struct qstr name; member 338 it->name.len != entry->e_name_len) ? -ENOATTR : 0; in xattr_entrymatch() 346 return memcmp(buf, it->name.name + processed, len) ? -ENOATTR : 0; in xattr_namematch() 370 .name 441 erofs_getxattr(struct inode *inode, int index, const char *name, void *buffer, size_t buffer_size) erofs_getxattr() argument 472 erofs_xattr_generic_get(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *name, void *buffer, size_t size) erofs_xattr_generic_get() argument [all...] |
/kernel/linux/linux-5.10/lib/ |
H A D | genalloc.c | 163 pool->name = NULL; in gen_pool_create() 258 kfree_const(pool->name); in gen_pool_destroy() 783 /* NULL data matches only a pool without an assigned name */ in devm_gen_pool_match() 784 if (!data && !(*p)->name) in devm_gen_pool_match() 787 if (!data || !(*p)->name) in devm_gen_pool_match() 790 return !strcmp((*p)->name, data); in devm_gen_pool_match() 796 * @name: name of a gen_pool or NULL, identifies a particular gen_pool on device 800 struct gen_pool *gen_pool_get(struct device *dev, const char *name) in gen_pool_get() argument 805 (void *)name); in gen_pool_get() 823 devm_gen_pool_create(struct device *dev, int min_alloc_order, int nid, const char *name) devm_gen_pool_create() argument 878 const char *name = NULL; of_gen_pool_get() local [all...] |
/kernel/linux/linux-5.10/kernel/locking/ |
H A D | lockdep_proc.c | 63 const char *name = class->name; in print_name() local 65 if (!name) { in print_name() 66 name = __get_key_name(class->key, str); in print_name() 67 seq_printf(m, "%s", name); in print_name() 69 seq_printf(m, "%s", name); in print_name() 463 char name[39]; in seq_stats() local 475 cname = rcu_dereference_sched(class->name); in seq_stats() 487 snprintf(name, namelen, "%s", key_name); in seq_stats() 489 snprintf(name, namele in seq_stats() [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/ |
H A D | pinctrl-u300.c | 685 * @name: the name of this specific pin group 692 const char *name; member 808 .name = "powergrp", 813 .name = "emif0grp", 818 .name = "emif1grp", 823 .name = "uart0grp", 828 .name = "mmc0grp", 833 .name = "spi0grp", 847 return u300_pin_groups[selector].name; in u300_get_group_name() 883 const char *name; global() member [all...] |
/kernel/linux/linux-5.10/drivers/regulator/ |
H A D | wm831x-ldo.c | 33 char name[WM831X_LDO_MAX_NAME]; member 246 snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); in wm831x_gp_ldo_probe() 247 ldo->desc.name = ldo->name; in wm831x_gp_ldo_probe() 286 ldo->name, in wm831x_gp_ldo_probe() 305 .name = "wm831x-ldo", 456 snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); in wm831x_aldo_probe() 457 ldo->desc.name in wm831x_aldo_probe() [all...] |
/kernel/linux/linux-5.10/fs/gfs2/ |
H A D | sys.c | 273 #define GFS2_ATTR(name, mode, show, store) \ 274 static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store) 599 #define TUNE_ATTR_3(name, show, store) \ 600 static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store) 602 #define TUNE_ATTR_2(name, store) \ 603 static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ 605 return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \ 607 TUNE_ATTR_3(name, nam [all...] |
/kernel/linux/linux-6.6/fs/xfs/ |
H A D | xfs_attr_item.c | 45 * Shared xattr name/value buffers for logged extended attribute operations 49 * memory allocator and memcpy overhead, the name (and value, for setxattr) 52 * a control structure, followed by the name, and then the value. 76 const void *name, in xfs_attri_log_nameval_alloc() 90 nv->name.i_addr = nv + 1; in xfs_attri_log_nameval_alloc() 91 nv->name.i_len = name_len; in xfs_attri_log_nameval_alloc() 92 nv->name.i_type = XLOG_REG_TYPE_ATTR_NAME; in xfs_attri_log_nameval_alloc() 93 memcpy(nv->name.i_addr, name, name_len); in xfs_attri_log_nameval_alloc() 96 nv->value.i_addr = nv->name in xfs_attri_log_nameval_alloc() 75 xfs_attri_log_nameval_alloc( const void *name, unsigned int name_len, const void *value, unsigned int value_len) xfs_attri_log_nameval_alloc() argument [all...] |
/kernel/linux/linux-6.6/drivers/soc/ti/ |
H A D | knav_qmss_acc.c | 72 kq->acc->name); in knav_acc_set_notify() 223 old, new, acc->name); in knav_range_setup_acc_irq() 231 acc->name, acc->name); in knav_range_setup_acc_irq() 232 ret = request_irq(irq, knav_acc_int_handler, 0, acc->name, in knav_range_setup_acc_irq() 246 acc->name, acc->name); in knav_range_setup_acc_irq() 349 acc->name, knav_acc_result_str(result)); in knav_acc_stop() 367 acc->name, knav_acc_result_str(result)); in knav_acc_start() 499 info->start_channel, range->name); in knav_init_acc_range() [all...] |
/kernel/linux/linux-6.6/drivers/regulator/ |
H A D | wm831x-ldo.c | 33 char name[WM831X_LDO_MAX_NAME]; member 246 snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); in wm831x_gp_ldo_probe() 247 ldo->desc.name = ldo->name; in wm831x_gp_ldo_probe() 286 ldo->name, in wm831x_gp_ldo_probe() 305 .name = "wm831x-ldo", 457 snprintf(ldo->name, sizeof(ldo->name), "LDO%d", id + 1); in wm831x_aldo_probe() 458 ldo->desc.name in wm831x_aldo_probe() [all...] |
/kernel/linux/linux-6.6/drivers/clk/davinci/ |
H A D | da8xx-cfgchip.c | 26 const char *name; member 107 init.name = info->name; in da8xx_cfgchip_gate_clk_register() 129 .name = "ehrpwm_tbclk", 151 .name = "div4.5", 196 const char *name; member 251 init.name = info->name; in da8xx_cfgchip_mux_clk_register() 270 .name = "async1", 292 .name [all...] |
/kernel/linux/linux-6.6/kernel/locking/ |
H A D | lockdep_proc.c | 63 const char *name = class->name; in print_name() local 65 if (!name) { in print_name() 66 name = __get_key_name(class->key, str); in print_name() 67 seq_printf(m, "%s", name); in print_name() 69 seq_printf(m, "%s", name); in print_name() 465 char name[39]; in seq_stats() local 477 cname = rcu_dereference_sched(class->name); in seq_stats() 489 snprintf(name, namelen, "%s", key_name); in seq_stats() 491 snprintf(name, namele in seq_stats() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath11k/ |
H A D | pcic.c | 70 { .name = "MHI", .num_vectors = 3, .base_vector = 0 }, 71 { .name = "CE", .num_vectors = 10, .base_vector = 3 }, 72 { .name = "WAKE", .num_vectors = 1, .base_vector = 13 }, 73 { .name = "DP", .num_vectors = 18, .base_vector = 14 }, 81 { .name = "MHI", .num_vectors = 3, .base_vector = 0 }, 82 { .name = "CE", .num_vectors = 5, .base_vector = 3 }, 83 { .name = "DP", .num_vectors = 8, .base_vector = 8 }, 91 { .name = "MHI", .num_vectors = 3, .base_vector = 0 }, 92 { .name = "CE", .num_vectors = 10, .base_vector = 3 }, 93 { .name [all...] |
/kernel/linux/linux-6.6/drivers/input/keyboard/ |
H A D | lkkbd.c | 268 char name[64]; member 282 unsigned char *name; member 284 #define RESPONSE(x) { .value = (x), .name = #x, } 305 return lk_response[i].name; in response_name() 355 * Print keyboard name and modify Compose=Alt on user's request. in lkkbd_detection_done() 359 strscpy(lk->name, "DEC LK201 keyboard", sizeof(lk->name)); in lkkbd_detection_done() 366 strscpy(lk->name, "DEC LK401 keyboard", sizeof(lk->name)); in lkkbd_detection_done() 370 strscpy(lk->name, "Unknow in lkkbd_detection_done() [all...] |
/kernel/linux/linux-6.6/tools/testing/kunit/ |
H A D | kunit_parser.py | 30 name : str - name of the test 42 self.name = '' 50 return (f'Test({self.status}, {self.name}, {self.expected_count}, ' 60 stdout.print_with_timestamp(stdout.red('[ERROR]') + f' Test: {self.name}: {error_message}') 305 Parses test header and stores test name in test object. 309 - '# Subtest: [test name]' 321 test.name = match.group(1) 360 if the name matches the name o [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/net/ |
H A D | test_bridge_neigh_suppress.sh | 160 ip link add name veth0 type veth peer name veth1 161 ip link set dev veth0 netns h1 name eth0 162 ip link set dev veth1 netns sw1 name swp1 164 ip link add name veth0 type veth peer name veth1 165 ip link set dev veth0 netns sw1 name veth0 166 ip link set dev veth1 netns sw2 name veth0 168 ip link add name veth0 type veth peer name veth [all...] |
/kernel/linux/linux-6.6/sound/soc/amd/ |
H A D | acp-da7219-max98357a.c | 60 dev_info(rtd->dev, "codec dai name = %s\n", codec_dai->name); in cz_da7219_init() 140 dev_info(codec_dai->dev, "codec dai name = %s\n", codec_dai->name); in cz_rt5682_init() 540 .name = "amd-da7219-play", 551 .name = "amd-da7219-cap", 561 .name = "amd-max98357-play", 572 .name = "dmic0", 583 .name = "dmic1", 596 .name [all...] |
/kernel/linux/linux-6.6/sound/soc/intel/boards/ |
H A D | sof_es8336.c | 381 /* name might be overridden during probe */ 382 .name = "0000:00:1f.3" 391 .name = "dmic-codec", 411 .name = "essx8336", /* sof- prefix added automatically */ 444 links[id].name = devm_kasprintf(dev, GFP_KERNEL, in sof_card_dai_links_create() 446 if (!links[id].name) in sof_card_dai_links_create() 475 links[id].name = "dmic01"; in sof_card_dai_links_create() 481 links[id + 1].name = "dmic16k"; in sof_card_dai_links_create() 516 links[id].name = devm_kasprintf(dev, GFP_KERNEL, in sof_card_dai_links_create() 518 if (!links[id].name) in sof_card_dai_links_create() [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cucdapi.c | 109 log_data_err("Error getting script code Got: %i Expected: %i for name %s (Error code does not propagate if data is not present. Are you missing data?)\n", in TestUScriptCodeAPI() 211 const char* name = uscript_getName(testAbbr[i]); in TestUScriptCodeAPI() local 212 if(name == NULL) { in TestUScriptCodeAPI() 213 log_data_err("Couldn't get script name\n"); in TestUScriptCodeAPI() 217 if(strcmp(expectedNames[i],name)!=0){ in TestUScriptCodeAPI() 218 log_err("Error getting abbreviations Got: %s Expected: %s\n",name,expectedNames[i]); in TestUScriptCodeAPI() 250 const char* name = uscript_getShortName(testAbbr[i]); in TestUScriptCodeAPI() local 252 if(strcmp(expectedAbbr[i],name)!=0){ in TestUScriptCodeAPI() 253 log_err("Error getting abbreviations Got: %s Expected: %s\n",name,expectedAbbr[i]); in TestUScriptCodeAPI() 368 const char* name in TestUScriptCodeAPI() local 476 const char* name = uscript_getName((UScriptCode)i); TestUScriptCodeAPI() local [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | usprep.cpp | 10 * file name: usprep.cpp 78 const char * /* name */, in isSPrepAcceptable() 112 namekey.pointer = b->name; in hashEntry() 125 name1.pointer = b1->name; in compareEntries() 126 name2.pointer = b2->name; in compareEntries() 170 if(key->name != NULL) { in usprep_internal_flushCache() 171 uprv_free(key->name); in usprep_internal_flushCache() 172 key->name=NULL; in usprep_internal_flushCache() 227 const char* name, in loadData() 244 dataMemory=udata_openChoice(path, type, name, isSPrepAcceptabl in loadData() 225 loadData(UStringPrepProfile* profile, const char* path, const char* name, const char* type, UErrorCode* errorCode) loadData() argument 305 usprep_getProfile(const char* path, const char* name, UErrorCode *status) usprep_getProfile() argument 392 usprep_open(const char* path, const char* name, UErrorCode* status) usprep_open() argument [all...] |
/third_party/ntfs-3g/ntfsprogs/ |
H A D | utils.c | 198 * @name: Full pathname of the device/file to work with 201 * Check that the name refers to a device and that is isn't already mounted. 207 int utils_valid_device(const char *name, int force) in utils_valid_device() argument 216 if (!name) { in utils_valid_device() 221 if (stat(name, &st) == -1) { in utils_valid_device() 223 ntfs_log_error("The device %s doesn't exist\n", name); in utils_valid_device() 226 name); in utils_valid_device() 231 if (ntfs_check_if_mounted(name, &mnt_flags)) { in utils_valid_device() 233 name); in utils_valid_device() 519 * add name t 647 char *name; utils_attr_get_name() local [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | usprep.cpp | 10 * file name: usprep.cpp 78 const char * /* name */, in isSPrepAcceptable() 112 namekey.pointer = b->name; in hashEntry() 125 name1.pointer = b1->name; in compareEntries() 126 name2.pointer = b2->name; in compareEntries() 170 if(key->name != nullptr) { in usprep_internal_flushCache() 171 uprv_free(key->name); in usprep_internal_flushCache() 172 key->name=nullptr; in usprep_internal_flushCache() 227 const char* name, in loadData() 244 dataMemory=udata_openChoice(path, type, name, isSPrepAcceptabl in loadData() 225 loadData(UStringPrepProfile* profile, const char* path, const char* name, const char* type, UErrorCode* errorCode) loadData() argument 305 usprep_getProfile(const char* path, const char* name, UErrorCode *status) usprep_getProfile() argument 392 usprep_open(const char* path, const char* name, UErrorCode* status) usprep_open() argument [all...] |
/third_party/node/deps/npm/lib/commands/ |
H A D | view.js | 20 static name = 'view' 93 if (!manifest.name) { 94 throw new Error('Invalid package.json, no "name" field') 97 pkg = `${manifest.name}${pkg.slice(1)}` 148 for (const name of this.workspaceNames) { 149 const wsPkg = `${name}${pkg.slice(1)}` 163 this.npm.output(`${name}:`) 172 results[name] = JSON.parse(msg) 260 async jsonData (data, name) { 299 msg += (includeVersions ? name [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | disasm.c | 33 char *name; member 354 .name = #_name, \ 360 .name = "mul", 386 if (op.name) in print_vec4_mul() 387 fprintf(fp, "%s", op.name); in print_vec4_mul() 420 .name = #_name, \ 453 if (op.name) in print_vec4_acc() 454 fprintf(fp, "%s", op.name); in print_vec4_acc() 482 .name = #_name, \ 488 .name [all...] |
/third_party/node/deps/openssl/openssl/crypto/encode_decode/ |
H A D | encoder_meth.c | 22 * Encoder can have multiple names, separated with colons in a name string 61 OPENSSL_free(encoder->base.name); in OSSL_ENCODER_free() 159 * that OSSL_ENCODER_fetch() is asking for, and the name or name id are in get_encoder_from_store() 230 if ((encoder->base.name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in encoder_from_algorithm() 330 * namemap entry, this is it. Should the name already exist there, we in construct_encoder() 370 /* Fetching support. Can fetch by numeric identity or by name */ 373 const char *name, const char *properties) in inner_ossl_encoder_fetch() 387 * If we have been passed both an id and a name, we have an in inner_ossl_encoder_fetch() 390 if (!ossl_assert(id == 0 || name in inner_ossl_encoder_fetch() 372 inner_ossl_encoder_fetch(struct encoder_data_st *methdata, int id, const char *name, const char *properties) inner_ossl_encoder_fetch() argument 459 OSSL_ENCODER_fetch(OSSL_LIB_CTX *libctx, const char *name, const char *properties) OSSL_ENCODER_fetch() argument 559 OSSL_ENCODER_is_a(const OSSL_ENCODER *encoder, const char *name) OSSL_ENCODER_is_a() argument 602 OSSL_ENCODER_names_do_all(const OSSL_ENCODER *encoder, void (*fn)(const char *name, void *data), void *data) OSSL_ENCODER_names_do_all() argument [all...] |