| /kernel/linux/linux-6.6/drivers/net/ethernet/sfc/falcon/ |
| H A D | net_driver.h | 79 /* Size of an RX scatter buffer. Small enough to pack 2 into a 4K page, 85 * of every buffer. Otherwise, we just need to ensure 4-byte 97 * struct ef4_buffer - A general-purpose DMA buffer 98 * @addr: host base address of the buffer 99 * @dma_addr: DMA base address of the buffer 112 * struct ef4_special_buffer - DMA buffer entered into buffer table 114 * @index: Buffer index within controller;s buffer table 115 * @entries: Number of buffer table entries 117 * The NIC has a buffer tabl 218 struct ef4_tx_buffer *buffer; global() member 331 struct ef4_rx_buffer *buffer; global() member 1326 struct ef4_tx_buffer *buffer = ef4_tx_queue_get_insert_buffer() local [all...] |
| /kernel/linux/linux-6.6/drivers/acpi/ |
| H A D | acpi_processor.c | 254 struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; in acpi_processor_get_info() local 275 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer); in acpi_processor_get_info() 525 struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; in processor_physically_present() local 533 status = acpi_evaluate_object(handle, NULL, NULL, &buffer); in processor_physically_present() 723 struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; in acpi_processor_ids_walk() local 731 status = acpi_evaluate_object(handle, NULL, NULL, &buffer); in acpi_processor_ids_walk() 831 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; in acpi_processor_evaluate_cst() local 838 status = acpi_evaluate_object(handle, "_CST", NULL, &buffer); in acpi_processor_evaluate_cst() 844 cst = buffer.pointer; in acpi_processor_evaluate_cst() 897 acpi_handle_info(handle, "_CST C%d package element[0] type(%x) is not buffer, ski in acpi_processor_evaluate_cst() [all...] |
| /kernel/linux/linux-6.6/drivers/net/wireless/purelifi/plfxlc/ |
| H A D | mac.c | 400 int plfxlc_mac_rx(struct ieee80211_hw *hw, const u8 *buffer, in plfxlc_mac_rx() argument 417 status = (struct rx_status *)buffer; in plfxlc_mac_rx() 436 if (plfxlc_filter_ack(hw, (struct ieee80211_hdr *)buffer, &stats) && in plfxlc_mac_rx() 440 buffer += sizeof(struct rx_status); in plfxlc_mac_rx() 441 payload_length = get_unaligned_be32(buffer); in plfxlc_mac_rx() 447 buffer += sizeof(u32); in plfxlc_mac_rx() 449 fc = get_unaligned((__le16 *)buffer); in plfxlc_mac_rx() 455 if (memcmp(&buffer[10], tx->station[sidx].mac, ETH_ALEN)) in plfxlc_mac_rx() 467 memcpy(tx->station[sidx].mac, &buffer[10], ETH_ALEN); in plfxlc_mac_rx() 474 switch (buffer[ in plfxlc_mac_rx() [all...] |
| /kernel/linux/linux-6.6/drivers/scsi/aacraid/ |
| H A D | rx.c | 343 char * buffer; in aac_rx_check_health() local 353 buffer = dma_alloc_coherent(&dev->pdev->dev, 512, &baddr, in aac_rx_check_health() 356 if (unlikely(buffer == NULL)) in aac_rx_check_health() 362 dma_free_coherent(&dev->pdev->dev, 512, buffer, baddr); in aac_rx_check_health() 365 memset(buffer, 0, 512); in aac_rx_check_health() 373 if (likely((buffer[0] == '0') && ((buffer[1] == 'x') || (buffer[1] == 'X')))) { in aac_rx_check_health() 374 ret = (hex_to_bin(buffer[2]) << 4) + in aac_rx_check_health() 375 hex_to_bin(buffer[ in aac_rx_check_health() [all...] |
| /kernel/linux/linux-6.6/drivers/scsi/fnic/ |
| H A D | fnic_trace.c | 34 * fnic_trace_get_buf - Give buffer pointer to user to fill up trace information 37 * This routine gets next available trace buffer entry location @wr_idx 38 * from allocated trace buffer pages and give that memory location 61 * Verify if trace buffer is full then change wd_idx to in fnic_trace_get_buf() 69 * increment @rd_idx to move to next entry in trace buffer in fnic_trace_get_buf() 81 * fnic_get_trace_data - Copy trace buffer to a memory file 82 * @fnic_dbgfs_t: pointer to debugfs trace buffer 86 * buffer and dumps it to fnic_dbgfs_t. It will start at the rd_idx entry in 87 * the log and process the log until the end of the buffer. Then it will gather 124 * Dump trace buffer entr in fnic_get_trace_data() [all...] |
| /kernel/linux/linux-5.10/drivers/usb/storage/ |
| H A D | protocol.h | 33 /* struct scsi_cmnd transfer buffer access utilities */ 36 extern unsigned int usb_stor_access_xfer_buf(unsigned char *buffer, 40 extern void usb_stor_set_xfer_buf(unsigned char *buffer,
|
| /kernel/linux/linux-6.6/drivers/usb/storage/ |
| H A D | protocol.h | 33 /* struct scsi_cmnd transfer buffer access utilities */ 36 extern unsigned int usb_stor_access_xfer_buf(unsigned char *buffer, 40 extern void usb_stor_set_xfer_buf(unsigned char *buffer,
|
| /test/xts/acts/commonlibrary/ets_utils/threadWorker_lib_standard/entry/src/ohosTest/ets/workers/ |
| H A D | newworker_038.js | 17 import buffer from '@ohos.buffer'; 22 let blob = new buffer.Blob(['a', 'b', 'c']);
|
| /kernel/linux/linux-5.10/drivers/acpi/acpica/ |
| H A D | exdump.c | 61 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(buffer.length), "Length"}, 62 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer.pointer), "Pointer"}, 63 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(buffer.node), "Parent Node"}, 411 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, in acpi_ex_dump_object() 412 obj_desc->buffer.length); in acpi_ex_dump_object() 691 obj_desc->buffer.length, in acpi_ex_dump_operand() 692 obj_desc->buffer.pointer); in acpi_ex_dump_operand() 694 /* Debug only -- dump the buffer contents */ in acpi_ex_dump_operand() 696 if (obj_desc->buffer.pointer) { in acpi_ex_dump_operand() 697 length = obj_desc->buffer in acpi_ex_dump_operand() [all...] |
| /kernel/linux/linux-5.10/drivers/net/ethernet/aquantia/atlantic/hw_atl/ |
| H A D | hw_atl_llh_internal.h | 644 * parameter: buffer {b} | stride size 0x10 | range [0, 7] 649 #define HW_ATL_RPB_RXBHI_THRESH_ADR(buffer) (0x00005714 + (buffer) * 0x10) 663 * parameter: buffer {b} | stride size 0x10 | range [0, 7] 668 #define HW_ATL_RPB_RXBLO_THRESH_ADR(buffer) (0x00005714 + (buffer) * 0x10) 700 * parameter: buffer {b} | stride size 0x10 | range [0, 7] 705 #define HW_ATL_RPB_RXBBUF_SIZE_ADR(buffer) (0x00005710 + (buffer) * 0x10) 719 * parameter: buffer { [all...] |
| /kernel/linux/linux-5.10/net/rds/ |
| H A D | connection.c | 656 u64 *buffer, in rds_for_each_conn_info() 673 if (!visitor(conn, buffer)) in rds_for_each_conn_info() 676 /* We copy as much as we can fit in the buffer, in rds_for_each_conn_info() 678 * can resize the buffer. */ in rds_for_each_conn_info() 680 rds_info_copy(iter, buffer, item_len); in rds_for_each_conn_info() 694 u64 *buffer, in rds_walk_conn_path_info() 722 if (!visitor(cp, buffer)) in rds_walk_conn_path_info() 725 /* We copy as much as we can fit in the buffer, in rds_walk_conn_path_info() 727 * can resize the buffer. in rds_walk_conn_path_info() 730 rds_info_copy(iter, buffer, item_le in rds_walk_conn_path_info() 652 rds_for_each_conn_info(struct socket *sock, unsigned int len, struct rds_info_iterator *iter, struct rds_info_lengths *lens, int (*visitor)(struct rds_connection *, void *), u64 *buffer, size_t item_len) rds_for_each_conn_info() argument 690 rds_walk_conn_path_info(struct socket *sock, unsigned int len, struct rds_info_iterator *iter, struct rds_info_lengths *lens, int (*visitor)(struct rds_conn_path *, void *), u64 *buffer, size_t item_len) rds_walk_conn_path_info() argument 739 rds_conn_info_visitor(struct rds_conn_path *cp, void *buffer) rds_conn_info_visitor() argument 769 rds6_conn_info_visitor(struct rds_conn_path *cp, void *buffer) rds6_conn_info_visitor() argument 802 u64 buffer[(sizeof(struct rds_info_connection) + 7) / 8]; rds_conn_info() local 815 u64 buffer[(sizeof(struct rds6_info_connection) + 7) / 8]; rds6_conn_info() local [all...] |
| /kernel/linux/linux-5.10/sound/oss/dmasound/ |
| H A D | dmasound_core.c | 469 Invalid user fragment params can occur if we allow the whole buffer in sq_setup() 582 - because we've lost the time that the N samples, already in the buffer, in sq_write() 946 buffer requirements *after* this call - OSS says "call setfrags first" 1210 in the stat buffer. Currently, 2 * (80 character line + <NL>). 1262 char *buffer = state.buf; in state_open() local 1278 len += sprintf(buffer+len, "%sDMA sound driver rev %03d :\n", in state_open() 1281 len += sprintf(buffer+len, in state_open() 1287 if present. Maximum buffer usage is specified. in state_open() 1291 len += dmasound.mach.state_info(buffer+len, in state_open() 1294 /* make usage of the state buffer a in state_open() [all...] |
| /kernel/linux/linux-5.10/sound/pci/oxygen/ |
| H A D | oxygen_lib.c | 188 struct snd_info_buffer *buffer) in oxygen_proc_read() 199 snd_iprintf(buffer, "CMI878%c:\n", i); in oxygen_proc_read() 201 snd_iprintf(buffer, "%02x:", i); in oxygen_proc_read() 203 snd_iprintf(buffer, " %02x", oxygen_read8(chip, i + j)); in oxygen_proc_read() 204 snd_iprintf(buffer, "\n"); in oxygen_proc_read() 209 snd_iprintf(buffer, "\nAC97:\n"); in oxygen_proc_read() 211 snd_iprintf(buffer, "%02x:", i); in oxygen_proc_read() 213 snd_iprintf(buffer, " %04x", in oxygen_proc_read() 215 snd_iprintf(buffer, "\n"); in oxygen_proc_read() 219 snd_iprintf(buffer, "\nAC9 in oxygen_proc_read() 187 oxygen_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) oxygen_proc_read() argument [all...] |
| /kernel/linux/linux-5.10/fs/ext2/ |
| H A D | xattr.c | 188 * Copy an extended attribute into the buffer 189 * provided, or compute the buffer size required. 190 * Buffer is NULL to compute the size of the buffer required. 197 void *buffer, size_t buffer_size) in ext2_xattr_get() 206 ea_idebug(inode, "name=%d.%s, buffer=%p, buffer_size=%ld", in ext2_xattr_get() 207 name_index, name, buffer, (long)buffer_size); in ext2_xattr_get() 260 if (buffer) { in ext2_xattr_get() 265 memcpy(buffer, bh->b_data + le16_to_cpu(entry->e_value_offs), in ext2_xattr_get() 280 * Copy a list of attribute names into the buffer 281 * provided, or compute the buffer siz 196 ext2_xattr_get(struct inode *inode, int name_index, const char *name, void *buffer, size_t buffer_size) ext2_xattr_get() argument 288 ext2_xattr_list(struct dentry *dentry, char *buffer, size_t buffer_size) ext2_xattr_list() argument 373 ext2_listxattr(struct dentry *dentry, char *buffer, size_t size) ext2_listxattr() argument [all...] |
| /kernel/linux/linux-5.10/fs/cifs/ |
| H A D | cifs_debug.c | 470 const char __user *buffer, size_t count, loff_t *ppos) in cifs_stats_proc_write() 479 rc = kstrtobool_from_user(buffer, count, &bv); in cifs_stats_proc_write() 630 static ssize_t name##_write(struct file *file, const char __user *buffer, \ 634 rc = kstrtoint_from_user(buffer, count, 10, & name); \ 763 static ssize_t cifsFYI_proc_write(struct file *file, const char __user *buffer, in cifsFYI_proc_write() argument 770 rc = get_user(c[0], buffer); in cifsFYI_proc_write() 803 const char __user *buffer, size_t count, loff_t *ppos) in cifs_linux_ext_proc_write() 807 rc = kstrtobool_from_user(buffer, count, &linuxExtEnabled); in cifs_linux_ext_proc_write() 834 const char __user *buffer, size_t count, loff_t *ppos) in cifs_lookup_cache_proc_write() 838 rc = kstrtobool_from_user(buffer, coun in cifs_lookup_cache_proc_write() 469 cifs_stats_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) cifs_stats_proc_write() argument 802 cifs_linux_ext_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) cifs_linux_ext_proc_write() argument 833 cifs_lookup_cache_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) cifs_lookup_cache_proc_write() argument 864 traceSMB_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) traceSMB_proc_write() argument 923 cifs_security_flags_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) cifs_security_flags_proc_write() argument [all...] |
| /kernel/linux/linux-5.10/kernel/ |
| H A D | params.c | 222 int param_get_##name(char *buffer, const struct kernel_param *kp) \ 224 return scnprintf(buffer, PAGE_SIZE, format "\n", \ 269 int param_get_charp(char *buffer, const struct kernel_param *kp) in param_get_charp() argument 271 return scnprintf(buffer, PAGE_SIZE, "%s\n", *((char **)kp->arg)); in param_get_charp() 299 int param_get_bool(char *buffer, const struct kernel_param *kp) in param_get_bool() argument 302 return sprintf(buffer, "%c\n", *(bool *)kp->arg ? 'Y' : 'N'); in param_get_bool() 359 int param_get_invbool(char *buffer, const struct kernel_param *kp) in param_get_invbool() argument 361 return sprintf(buffer, "%c\n", (*(bool *)kp->arg) ? 'N' : 'Y'); in param_get_invbool() 454 static int param_array_get(char *buffer, const struct kernel_param *kp) in param_array_get() argument 463 buffer[of in param_array_get() 506 param_get_string(char *buffer, const struct kernel_param *kp) param_get_string() argument [all...] |
| /kernel/linux/linux-5.10/drivers/platform/x86/ |
| H A D | hp-wmi.c | 139 /* 7 devices fit into the 128 byte buffer */ 199 * buffer: Buffer used as input and/or output 200 * insize: Size of input buffer 201 * outsize: Size of output buffer 206 * -EINVAL if the output buffer size exceeds buffersize 211 * buffer = kzalloc(128, GFP_KERNEL); 212 * ret = hp_wmi_perform_query(HPWMI_BATTERY_QUERY, HPWMI_READ, buffer, 1, 128) 215 void *buffer, int insize, int outsize) in hp_wmi_perform_query() 238 memcpy(&args.data[0], buffer, insize); in hp_wmi_perform_query() 252 bios_return = (struct bios_return *)obj->buffer in hp_wmi_perform_query() 214 hp_wmi_perform_query(int query, enum hp_wmi_command command, void *buffer, int insize, int outsize) hp_wmi_perform_query() argument 372 char buffer[4] = { 0x01, 0x00, rfkill_id, !blocked }; hp_wmi_rfkill2_set_block() local [all...] |
| /kernel/linux/linux-6.6/drivers/net/ethernet/aquantia/atlantic/hw_atl/ |
| H A D | hw_atl_llh_internal.h | 644 * parameter: buffer {b} | stride size 0x10 | range [0, 7] 649 #define HW_ATL_RPB_RXBHI_THRESH_ADR(buffer) (0x00005714 + (buffer) * 0x10) 663 * parameter: buffer {b} | stride size 0x10 | range [0, 7] 668 #define HW_ATL_RPB_RXBLO_THRESH_ADR(buffer) (0x00005714 + (buffer) * 0x10) 700 * parameter: buffer {b} | stride size 0x10 | range [0, 7] 705 #define HW_ATL_RPB_RXBBUF_SIZE_ADR(buffer) (0x00005710 + (buffer) * 0x10) 719 * parameter: buffer { [all...] |
| /kernel/linux/linux-6.6/drivers/acpi/acpica/ |
| H A D | exdump.c | 61 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET(buffer.length), "Length"}, 62 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET(buffer.pointer), "Pointer"}, 63 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(buffer.node), "Parent Node"}, 411 ACPI_DUMP_BUFFER(obj_desc->buffer.pointer, in acpi_ex_dump_object() 412 obj_desc->buffer.length); in acpi_ex_dump_object() 691 obj_desc->buffer.length, in acpi_ex_dump_operand() 692 obj_desc->buffer.pointer); in acpi_ex_dump_operand() 694 /* Debug only -- dump the buffer contents */ in acpi_ex_dump_operand() 696 if (obj_desc->buffer.pointer) { in acpi_ex_dump_operand() 697 length = obj_desc->buffer in acpi_ex_dump_operand() [all...] |
| /kernel/linux/linux-6.6/fs/ext2/ |
| H A D | xattr.c | 188 * Copy an extended attribute into the buffer 189 * provided, or compute the buffer size required. 190 * Buffer is NULL to compute the size of the buffer required. 197 void *buffer, size_t buffer_size) in ext2_xattr_get() 206 ea_idebug(inode, "name=%d.%s, buffer=%p, buffer_size=%ld", in ext2_xattr_get() 207 name_index, name, buffer, (long)buffer_size); in ext2_xattr_get() 260 if (buffer) { in ext2_xattr_get() 265 memcpy(buffer, bh->b_data + le16_to_cpu(entry->e_value_offs), in ext2_xattr_get() 280 * Copy a list of attribute names into the buffer 281 * provided, or compute the buffer siz 196 ext2_xattr_get(struct inode *inode, int name_index, const char *name, void *buffer, size_t buffer_size) ext2_xattr_get() argument 288 ext2_xattr_list(struct dentry *dentry, char *buffer, size_t buffer_size) ext2_xattr_list() argument 372 ext2_listxattr(struct dentry *dentry, char *buffer, size_t size) ext2_listxattr() argument [all...] |
| /kernel/linux/linux-6.6/kernel/ |
| H A D | params.c | 223 int param_get_##name(char *buffer, const struct kernel_param *kp) \ 225 return scnprintf(buffer, PAGE_SIZE, format "\n", \ 288 int param_get_charp(char *buffer, const struct kernel_param *kp) in param_get_charp() argument 290 return scnprintf(buffer, PAGE_SIZE, "%s\n", *((char **)kp->arg)); in param_get_charp() 318 int param_get_bool(char *buffer, const struct kernel_param *kp) in param_get_bool() argument 321 return sprintf(buffer, "%c\n", *(bool *)kp->arg ? 'Y' : 'N'); in param_get_bool() 378 int param_get_invbool(char *buffer, const struct kernel_param *kp) in param_get_invbool() argument 380 return sprintf(buffer, "%c\n", (*(bool *)kp->arg) ? 'N' : 'Y'); in param_get_invbool() 473 static int param_array_get(char *buffer, const struct kernel_param *kp) in param_array_get() argument 482 buffer[of in param_array_get() 525 param_get_string(char *buffer, const struct kernel_param *kp) param_get_string() argument [all...] |
| /kernel/linux/linux-6.6/net/rds/ |
| H A D | connection.c | 656 u64 *buffer, in rds_for_each_conn_info() 673 if (!visitor(conn, buffer)) in rds_for_each_conn_info() 676 /* We copy as much as we can fit in the buffer, in rds_for_each_conn_info() 678 * can resize the buffer. */ in rds_for_each_conn_info() 680 rds_info_copy(iter, buffer, item_len); in rds_for_each_conn_info() 694 u64 *buffer, in rds_walk_conn_path_info() 722 if (!visitor(cp, buffer)) in rds_walk_conn_path_info() 725 /* We copy as much as we can fit in the buffer, in rds_walk_conn_path_info() 727 * can resize the buffer. in rds_walk_conn_path_info() 730 rds_info_copy(iter, buffer, item_le in rds_walk_conn_path_info() 652 rds_for_each_conn_info(struct socket *sock, unsigned int len, struct rds_info_iterator *iter, struct rds_info_lengths *lens, int (*visitor)(struct rds_connection *, void *), u64 *buffer, size_t item_len) rds_for_each_conn_info() argument 690 rds_walk_conn_path_info(struct socket *sock, unsigned int len, struct rds_info_iterator *iter, struct rds_info_lengths *lens, int (*visitor)(struct rds_conn_path *, void *), u64 *buffer, size_t item_len) rds_walk_conn_path_info() argument 739 rds_conn_info_visitor(struct rds_conn_path *cp, void *buffer) rds_conn_info_visitor() argument 769 rds6_conn_info_visitor(struct rds_conn_path *cp, void *buffer) rds6_conn_info_visitor() argument 802 u64 buffer[(sizeof(struct rds_info_connection) + 7) / 8]; rds_conn_info() local 815 u64 buffer[(sizeof(struct rds6_info_connection) + 7) / 8]; rds6_conn_info() local [all...] |
| /kernel/linux/linux-6.6/sound/oss/dmasound/ |
| H A D | dmasound_core.c | 469 Invalid user fragment params can occur if we allow the whole buffer in sq_setup() 582 - because we've lost the time that the N samples, already in the buffer, in sq_write() 946 buffer requirements *after* this call - OSS says "call setfrags first" 1205 in the stat buffer. Currently, 2 * (80 character line + <NL>). 1248 char *buffer = state.buf; in state_open() local 1264 len += sprintf(buffer+len, "%sDMA sound driver rev %03d :\n", in state_open() 1267 len += sprintf(buffer+len, in state_open() 1273 if present. Maximum buffer usage is specified. in state_open() 1277 len += dmasound.mach.state_info(buffer+len, in state_open() 1280 /* make usage of the state buffer a in state_open() [all...] |
| /kernel/linux/linux-6.6/sound/pci/oxygen/ |
| H A D | oxygen_lib.c | 188 struct snd_info_buffer *buffer) in oxygen_proc_read() 199 snd_iprintf(buffer, "CMI878%c:\n", i); in oxygen_proc_read() 201 snd_iprintf(buffer, "%02x:", i); in oxygen_proc_read() 203 snd_iprintf(buffer, " %02x", oxygen_read8(chip, i + j)); in oxygen_proc_read() 204 snd_iprintf(buffer, "\n"); in oxygen_proc_read() 209 snd_iprintf(buffer, "\nAC97:\n"); in oxygen_proc_read() 211 snd_iprintf(buffer, "%02x:", i); in oxygen_proc_read() 213 snd_iprintf(buffer, " %04x", in oxygen_proc_read() 215 snd_iprintf(buffer, "\n"); in oxygen_proc_read() 219 snd_iprintf(buffer, "\nAC9 in oxygen_proc_read() 187 oxygen_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer) oxygen_proc_read() argument [all...] |
| /test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
| H A D | stdiondk.cpp | 131 char buffer[SIZE_20] = {0};
in VsprintfTest() local 134 int vspval = vsprintf(buffer, format, aptr);
in VsprintfTest() 154 char buffer[SIZE_20] = {0};
in vsprintfChkTest() local 157 int vspval = __vsprintf_chk(buffer, PARAM_1, PARAM_2, format, aptr);
in vsprintfChkTest() 189 char buffer[L_tmpnam];
in Tmpnam() local 190 char *p = tmpnam(buffer);
in Tmpnam() 252 char buffer[SIZE_20];
in SnprintfChk() local 256 snprintf_value = __snprintf_chk(buffer, SIZE_20, PARAM_0, SIZE_20, "hello : %s", "world!");
in SnprintfChk() 273 char buffer[SIZE_20];
in SprintfChk() local 277 sprintfValue = __sprintf_chk(buffer, PARAM_ in SprintfChk() 351 char buffer[20]; Fread_chk() local 611 char buffer[20]; Snprintf() local [all...] |