Lines Matching refs:string
473 function pcmd(string)
475 print string | cmd
478 function get_type(string)
480 if (string == "int") {
482 } else if (string == "unsigned int" || string == "u_int" || string == "uint") {
484 } else if (string == "long") {
486 } else if (string == "unsigned long" || string == "u_long") {
488 } else if (string == "short") {
490 } else if (string == "unsigned short") {
492 } else if (string == "char") {
494 } else if (string == "signed char") {
496 } else if (string == "unsigned char") {
498 } else if (string == "uint8_t") {
500 } else if (string == "uint16_t") {
502 } else if (string == "u_int32_t" || string == "uint32_t") {
504 } else if (string == "u_int64_t" || string == "uint64_t") {
506 } else if (string ~ /\*$/) {
508 } else if (string == "off_t") {
510 } else if (string == "pid_t" || string == "kbd_t") {
512 } else if (string == "daddr_t" || string == "dev_t") {
514 } else if (substr(string, 0, 7) == "struct " ) {
515 gsub(/ /, "", string)
516 return "struct_" substr(string, 7) "_sz"
517 } else if (string == "scsireq_t") {
519 } else if (string == "tone_t") {
521 } else if (string == "union twe_statrequest") {
523 } else if (string == "usb_device_descriptor_t") {
525 } else if (string == "v4l2_std_id") {
527 } else if (string == "vtmode_t") {
529 } else if (string == "_old_mixer_info") {
531 } else if (string == "agp_allocate") {
533 } else if (string == "agp_bind") {
535 } else if (string == "agp_info") {
537 } else if (string == "agp_region") {
539 } else if (string == "agp_setup") {
541 } else if (string == "agp_unbind") {
543 } else if (string == "atareq_t") {
545 } else if (string == "cpustate_t") {
547 } else if (string == "dmx_caps_t") {
549 } else if (string == "dmx_source_t") {
551 } else if (string == "dvd_authinfo") {
553 } else if (string == "dvd_struct") {
555 } else if (string == "enum v4l2_priority") {
557 } else if (string == "envsys_basic_info_t") {
559 } else if (string == "envsys_tre_data_t") {
561 } else if (string == "ext_accm") {
563 } else if (string == "fe_sec_mini_cmd_t") {
565 } else if (string == "fe_sec_tone_mode_t") {
567 } else if (string == "fe_sec_voltage_t") {
569 } else if (string == "fe_status_t") {
571 } else if (string == "gdt_ctrt_t") {
573 } else if (string == "gdt_event_t") {
575 } else if (string == "gdt_osv_t") {
577 } else if (string == "gdt_rescan_t") {
579 } else if (string == "gdt_statist_t") {
581 } else if (string == "gdt_ucmd_t") {
583 } else if (string == "iscsi_conn_status_parameters_t") {
585 } else if (string == "iscsi_get_version_parameters_t") {
587 } else if (string == "iscsi_iocommand_parameters_t") {
589 } else if (string == "iscsi_login_parameters_t") {
591 } else if (string == "iscsi_logout_parameters_t") {
593 } else if (string == "iscsi_register_event_parameters_t") {
595 } else if (string == "iscsi_remove_parameters_t") {
597 } else if (string == "iscsi_send_targets_parameters_t") {
599 } else if (string == "iscsi_set_node_name_parameters_t") {
601 } else if (string == "iscsi_wait_event_parameters_t") {
603 } else if (string == "isp_stats_t") {
605 } else if (string == "lsenable_t") {
607 } else if (string == "lsdisable_t") {
609 } else if (string == "mixer_ctrl_t") {
611 } else if (string == "mixer_devinfo_t") {
613 } else if (string == "mpu_command_rec") {
615 } else if (string == "rndstat_t") {
617 } else if (string == "rndstat_name_t") {
619 } else if (string == "rndctl_t") {
621 } else if (string == "rnddata_t") {
623 } else if (string == "rndpoolstat_t") {
625 } else if (string == "rndstat_est_t") {
627 } else if (string == "rndstat_est_name_t") {
629 } else if (string == "pps_params_t") {
631 } else if (string == "pps_info_t") {
633 } else if (string == "linedn_t") {
635 } else if (string == "mixer_info") {
637 } else if (string == "RF_SparetWait_t") {
639 } else if (string == "RF_ComponentLabel_t") {
641 } else if (string == "RF_SingleComponent_t") {
643 } else if (string == "RF_ProgressInfo_t") {
645 } else if (string == "nvlist_ref_t") {
647 } else if (string == "spi_ioctl_transfer_t") {
649 } else if (string == "spi_ioctl_configure_t") {
652 print "Unrecognized entry: " string
658 return string