亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? dmidecode.c

?? 在Linux環境在終端打印出所有SMBIOS信息
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* * 3.3.8 Cache Information (Type 7) */static const char *dmi_cache_mode(u8 code){	static const char *mode[]={		"Write Through", /* 0x00 */		"Write Back",		"Varies With Memory Address",		"Unknown" /* 0x03 */	};		return mode[code];}static const char *dmi_cache_location(u8 code){	static const char *location[4]={		"Internal", /* 0x00 */		"External",		NULL, /* 0x02 */		"Unknown" /* 0x03 */	};		if(location[code]!=NULL)		return location[code];	return out_of_spec;}static void dmi_cache_size(u16 code){	if(code&0x8000)		printf(" %u KB", (code&0x7FFF)<<6);	else		printf(" %u KB", code);}static void dmi_cache_types(u16 code, const char *sep){	/* 3.3.8.1 */	static const char *types[]={		"Other", /* 0 */		"Unknown",		"Non-burst",		"Burst",		"Pipeline Burst",		"Synchronous",		"Asynchronous" /* 6 */	};		if((code&0x007F)==0)		printf(" None");	else	{		int i;				for(i=0; i<=6; i++)			if(code&(1<<i))				printf("%s%s", sep, types[i]);	}}static const char *dmi_cache_ec_type(u8 code){	/* 3.3.8.2 */	static const char *type[]={		"Other", /* 0x01 */		"Unknown",		"None",		"Parity",		"Single-bit ECC",		"Multi-bit ECC" /* 0x06 */	};		if(code>=0x01 && code<=0x06)		return type[code-0x01];	return out_of_spec;}static const char *dmi_cache_type(u8 code){	/* 3.3.8.3 */	static const char *type[]={		"Other", /* 0x01 */		"Unknown",		"Instruction",		"Data",		"Unified" /* 0x05 */	};		if(code>=0x01 && code<=0x05)		return type[code-0x01];	return out_of_spec;}static const char *dmi_cache_associativity(u8 code){	/* 3.3.8.4 */	static const char *type[]={		"Other", /* 0x01 */		"Unknown",		"Direct Mapped",		"2-way Set-associative",		"4-way Set-associative",		"Fully Associative",		"8-way Set-associative",		"16-way Set-associative" /* 0x08 */	};		if(code>=0x01 && code<=0x08)		return type[code-0x01];	return out_of_spec;}/* * 3.3.9 Port Connector Information (Type 8) */static const char *dmi_port_connector_type(u8 code){	/* 3.3.9.2 */	static const char *type[]={		"None", /* 0x00 */		"Centronics",		"Mini Centronics",		"Proprietary",		"DB-25 male",		"DB-25 female",		"DB-15 male",		"DB-15 female",		"DB-9 male",		"DB-9 female",		"RJ-11", 		"RJ-45",		"50 Pin MiniSCSI",		"Mini DIN",		"Micro DIN",		"PS/2",		"Infrared",		"HP-HIL",		"Access Bus (USB)",		"SSA SCSI",		"Circular DIN-8 male",		"Circular DIN-8 female",		"On Board IDE",		"On Board Floppy",		"9 Pin Dual Inline (pin 10 cut)",		"25 Pin Dual Inline (pin 26 cut)",		"50 Pin Dual Inline",		"68 Pin Dual Inline",		"On Board Sound Input From CD-ROM",		"Mini Centronics Type-14",		"Mini Centronics Type-26",		"Mini Jack (headphones)",		"BNC",		"IEEE 1394" /* 0x21 */	};	static const char *type_0xA0[]={		"PC-98", /* 0xA0 */		"PC-98 Hireso",		"PC-H98",		"PC-98 Note",		"PC-98 Full" /* 0xA4 */	};		if(code<=0x21)		return type[code];	if(code>=0xA0 && code<=0xA4)		return type_0xA0[code-0xA0];	if(code==0xFF)		return "Other";	return out_of_spec;}static const char *dmi_port_type(u8 code){	/* 3.3.9.3 */	static const char *type[]={		"None", /* 0x00 */		"Parallel Port XT/AT Compatible",		"Parallel Port PS/2",		"Parallel Port ECP",		"Parallel Port EPP",		"Parallel Port ECP/EPP",		"Serial Port XT/AT Compatible",		"Serial Port 16450 Compatible",		"Serial Port 16550 Compatible",		"Serial Port 16550A Compatible",		"SCSI Port",		"MIDI Port",		"Joystick Port",		"Keyboard Port",		"Mouse Port",		"SSA SCSI",		"USB",		"Firewire (IEEE P1394)",		"PCMCIA Type I",		"PCMCIA Type II",		"PCMCIA Type III",		"Cardbus",		"Access Bus Port",		"SCSI II",		"SCSI Wide",		"PC-98",		"PC-98 Hireso",		"PC-H98",		"Video Port",		"Audio Port",		"Modem Port",		"Network Port" /* 0x1F */	};	static const char *type_0xA0[]={		"8251 Compatible", /* 0xA0 */		"8251 FIFO Compatible" /* 0xA1 */	};		if(code<=0x1F)		return type[code];	if(code>=0xA0 && code<=0xA1)		return type_0xA0[code-0xA0];	if(code==0xFF)		return "Other";	return out_of_spec;}/* * 3.3.10 System Slots (Type 9) */static const char *dmi_slot_type(u8 code){	/* 3.3.10.1 */	static const char *type[]={		"Other", /* 0x01 */		"Unknown",		"ISA",		"MCA",		"EISA",		"PCI",		"PC Card (PCMCIA)",		"VLB",		"Proprietary",		"Processor Card",		"Proprietary Memory Card",		"I/O Riser Card",		"NuBus",		"PCI-66",		"AGP",		"AGP 2x",		"AGP 4x",		"PCI-X",		"AGP 8x" /* 0x13 */	};	static const char *type_0xA0[]={		"PC-98/C20", /* 0xA0 */		"PC-98/C24",		"PC-98/E",		"PC-98/Local Bus",		"PC-98/Card" /* 0xA4 */	};		if(code>=0x01 && code<=0x13)		return type[code-0x01];	if(code>=0xA0 && code<=0xA4)		return type_0xA0[code-0xA0];	return out_of_spec;}static const char *dmi_slot_bus_width(u8 code){	/* 3.3.10.2 */	static const char *width[]={		"", /* 0x01, "Other" */		"", /* "Unknown" */		"8-bit ",		"16-bit ",		"32-bit ",		"64-bit ",		"128-bit " /* 0x07 */	};		if(code>=0x01 && code<=0x07)		return width[code-0x01];	return out_of_spec;}static const char *dmi_slot_current_usage(u8 code){	/* 3.3.10.3 */	static const char *usage[]={		"Other", /* 0x01 */		"Unknown",		"Available",		"In Use" /* 0x04 */	};		if(code>=0x01 && code<=0x04)		return usage[code-0x01];	return out_of_spec;}static const char *dmi_slot_length(u8 code){	/* 3.3.1O.4 */	static const char *length[]={		"Other", /* 0x01 */		"Unknown",		"Short",		"Long" /* 0x04 */	};		if(code>=0x01 && code<=0x04)		return length[code-0x01];	return out_of_spec;}static void dmi_slot_id(u8 code1, u8 code2, u8 type, const char *prefix){	/* 3.3.10.5 */	switch(type)	{		case 0x04: /* MCA */			printf("%sID: %u\n", prefix, code1);			break;		case 0x05: /* EISA */			printf("%sID: %u\n", prefix, code1);			break;		case 0x06: /* PCI */		case 0x0E: /* PCI */		case 0x0F: /* AGP */		case 0x10: /* AGP */		case 0x11: /* AGP */		case 0x12: /* PCI */			printf("%sID: %u\n", prefix, code1);			break;		case 0x07: /* PCMCIA */			printf("%sID: Adapter %u, Socket %u\n", prefix, code1, code2);			break;	}}static void dmi_slot_characteristics(u8 code1, u8 code2, const char *prefix){	/* 3.3.10.6 */	static const char *characteristics1[]={		"5.0 V is provided", /* 1 */		"3.3 V is provided",		"Opening is shared",		"PC Card-16 is supported",		"Cardbus is supported",		"Zoom Video is supported",		"Modem ring resume is supported" /* 7 */	};	/* 3.3.10.7 */	static const char *characteristics2[]={		"PME signal is supported", /* 0 */		"Hot-plug devices are supported",		"SMBus signal is supported" /* 2 */	};		if(code1&(1<<0))		printf(" Unknown\n");	else if((code1&0x7F)==0 && (code2&0x07)==0)		printf(" None\n");	else	{		int i;				printf("\n");		for(i=1; i<=7; i++)			if(code1&(1<<i))				printf("%s%s\n", prefix, characteristics1[i-1]);		for(i=0; i<=2; i++)			if(code2&(1<<i))				printf("%s%s\n", prefix, characteristics2[i]);	}}/* * 3.3.11 On Board Devices Information (Type 10) */static const char *dmi_on_board_devices_type(u8 code){	/* 3.3.11.1 */	static const char *type[]={		"Other", /* 0x01 */		"Unknown",		"Video",		"SCSI Controller",		"Ethernet",		"Token Ring",		"Sound" /* 0x07 */	};		if(code>=0x01 && code <=0x07)		return type[code-0x01];	return out_of_spec;}static void dmi_on_board_devices(struct dmi_header *h, const char *prefix){	u8 *p=(u8 *)h+4;	u8 count=(h->length-0x04)/2;	int i;	for(i=0; i<count; i++)	{		printf("%sOn Board Device Information\n",			prefix);		printf("%s\tType: %s\n",			prefix, dmi_on_board_devices_type(p[2*i]&0x7F));		printf("%s\tStatus: %s\n",			prefix, p[2*i]&0x80?"Enabled":"Disabled");		printf("%s\tDescription: %s\n",			prefix, dmi_string(h, p[2*i+1]));	}}/* * 3.3.12 OEM Strings (Type 11) */static void dmi_oem_strings(struct dmi_header *h, const char *prefix){	u8 *p=(u8 *)h+4;	u8 count=p[0x00];	int i;		for(i=1; i<=count; i++)		printf("%sString %d: %s\n",			prefix, i, dmi_string(h, i));}/* * 3.3.13 System Configuration Options (Type 12) */static void dmi_system_configuration_options(struct dmi_header *h, const char *prefix){	u8 *p=(u8 *)h+4;	u8 count=p[0x00];	int i;		for(i=1; i<=count; i++)		printf("%sOption %d: %s\n",			prefix, i, dmi_string(h, i));}/* * 3.3.14 BIOS Language Information (Type 13) */static void dmi_bios_languages(struct dmi_header *h, const char *prefix){	u8 *p=(u8 *)h+4;	u8 count=p[0x00];	int i;		for(i=1; i<=count; i++)		printf("%s%s\n",			prefix, dmi_string(h, i));}/* * 3.3.15 Group Associations (Type 14) */static void dmi_group_associations_items(u8 count, u8 *p, const char *prefix){	int i;		for(i=0; i<count; i++)	{		printf("%s0x%04X (%s)\n",			prefix, WORD(p+3*i+1),			dmi_smbios_structure_type(p[3*i]));	}}/* * 3.3.16 System Event Log (Type 15) */static const char *dmi_event_log_method(u8 code){	static const char *method[]={		"Indexed I/O, one 8-bit index port, one 8-bit data port", /* 0x00 */		"Indexed I/O, two 8-bit index ports, one 8-bit data port",		"Indexed I/O, one 16-bit index port, one 8-bit data port",		"Memory-mapped physical 32-bit address",		"General-pupose non-volatile data functions" /* 0x04 */	};		if(code<=0x04)		return method[code];	if(code>=0x80)		return "OEM-specific";	return out_of_spec;}static void dmi_event_log_status(u8 code){	static const char *valid[]={		"Invalid", /* 0 */		"Valid" /* 1 */	};	static const char *full[]={		"Not Full", /* 0 */		"Full" /* 1 */	};		printf(" %s, %s",		valid[code&(1<<0)], full[code&(1<<1)]);}static void dmi_event_log_address(u8 method, u8 *p){	/* 3.3.16.3 */	switch(method)	{		case 0x00:		case 0x01:		case 0x02:			printf(" Index 0x%04X, Data 0x%04X", WORD(p), WORD(p+2));			break;		case 0x03:			printf(" 0x%08X", DWORD(p));			break;		case 0x04:			printf(" 0x%04X", WORD(p));			break;		default:			printf(" Unknown");	}}static const char *dmi_event_log_header_type(u8 code){	static const char *type[]={		"No Header", /* 0x00 */		"Type 1" /* 0x01 */	};		if(code<=0x01)		return type[code];	if(code>=0x80)		return "OEM-specific";	return out_of_spec;}static const char *dmi_event_log_descriptor_type(u8 code){	/* 3.3.16.6.1 */	static const char *type[]={		NULL, /* 0x00 */		"Single-bit ECC memory error",		"Multi-bit ECC memory error",		"Parity memory error",		"Bus timeout",		"I/O channel block",		"Software NMI",		"POST memory resize",		"POST error",		"PCI parity error",		"PCI system error",		"CPU failure",		"EISA failsafe timer timeout",		"Correctable memory log disabled",		"Logging disabled",		NULL, /* 0x0F */		"System limit exceeded",		"Asynchronous hardware timer expired",		"System configuration information",		"Hard disk information",		"System reconfigured",		"Uncorrectable CPU-complex error",		"Log area reset/cleared",		"System boot" /* 0x17 */	};		if(code<=0x17 && type[code]!=NULL)		return type[code];	if(code>=0x80 && code<=0xFE)		return "OEM-specific";	if(code==0xFF)		return "End of log";	return out_of_spec;}static const char *dmi_event_log_descriptor_format(u8 code){	/* 3.3.16.6.2 */	static const char *format[]={		"None", /* 0x00 */		"Handle",		"Multiple-event",		"Multiple-event handle",		"POST results bitmap",		"System management",		"Multiple-event system management" /* 0x06 */	};		if(code<=0x06)		return format[code];	if(code>=0x80)		return "OEM-specific";	return out_of_spec;}static void dmi_event_log_descriptors(u8 count, u8 len, u8 *p, const char *prefix){	/* 3.3.16.1, , 3.3.16.6.2 */	int i;		for(i=0; i<count; i++)	{		if(len>=0x02)		{			printf("%sDescriptor %u: %s\n",				prefix, i+1, dmi_event_log_descriptor_type(p[i*len]));			printf("%sData Format %u: %s\n",				prefix, i+1, dmi_event_log_descriptor_format(p[i*len+1]));		}	}}/* * 3.3.17 Physical Memory Array (Type 16) */static const char *dmi_memory_array_location(u8 code){	/* 3.3.17.1 */	static const char *location[]={		"Other", /* 0x01 */		"Unknown",

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费高清在线一区| 91久久香蕉国产日韩欧美9色| 一区二区免费视频| 国产欧美日韩麻豆91| 国产亚洲精品久| 中文字幕的久久| 一区二区三区中文字幕在线观看| 亚洲视频一区二区免费在线观看| 亚洲成av人综合在线观看| 午夜a成v人精品| 国产成人午夜99999| 久久9热精品视频| 久久蜜桃av一区精品变态类天堂| 精品国产91久久久久久久妲己 | 国内精品写真在线观看| 国产在线精品一区二区不卡了| 国产高清不卡二三区| 日韩女优毛片在线| 午夜精品一区二区三区电影天堂| 国产福利精品导航| 欧美久久久影院| 欧美激情在线观看视频免费| 老司机午夜精品| 欧美在线观看视频一区二区| 久久久久久久电影| 亚洲精品视频免费观看| 麻豆国产精品一区二区三区 | 国产一区欧美日韩| 欧美精品一卡两卡| 亚洲大片精品永久免费| 在线日韩av片| wwwwxxxxx欧美| 免费在线观看一区| 欧美日韩一区二区在线观看视频 | 亚洲午夜精品在线| 青青草国产精品亚洲专区无| 国产自产视频一区二区三区 | 成人av午夜电影| 日韩一区二区在线看| 国产一区二区三区免费播放| 91精品在线观看入口| 日本免费新一区视频| 精品久久久久久无| 毛片av中文字幕一区二区| 欧美精品99久久久**| 一区二区三区精品| 欧美在线免费观看视频| 午夜影院久久久| 中文字幕二三区不卡| 在线欧美日韩精品| 久久成人免费电影| 亚洲午夜久久久久久久久电影网 | 国产成人av电影在线| 久久久夜色精品亚洲| 亚洲国产精品t66y| 欧美精品第1页| 国产一区二区伦理| 中文字幕一区二区三区在线不卡 | 色婷婷av一区二区三区软件| 蜜臀va亚洲va欧美va天堂| 亚洲同性同志一二三专区| 欧美日韩免费电影| 色婷婷综合在线| 国产成人综合亚洲网站| 婷婷一区二区三区| 亚洲精品国产第一综合99久久| 久久综合久久99| 91国偷自产一区二区使用方法| 韩国女主播一区二区三区| 视频一区欧美精品| 亚洲午夜一二三区视频| 欧美日韩亚洲国产综合| 色综合久久中文综合久久牛| 日韩国产欧美在线视频| 亚洲最新在线观看| 国产精品久久久久aaaa樱花| 久久久综合九色合综国产精品| 久久久久久久国产精品影院| 欧美aaaaaa午夜精品| 午夜精品一区二区三区三上悠亚 | 国产精品大尺度| 麻豆精品在线看| 午夜在线电影亚洲一区| 亚洲一区二区三区三| 综合av第一页| 亚洲柠檬福利资源导航| 亚洲人成电影网站色mp4| 国产欧美一区二区三区网站| 一区二区三区中文字幕精品精品 | 一区二区三区在线观看动漫| 欧美成人免费网站| wwwwww.欧美系列| 精品福利在线导航| 国产精品久久久久久久蜜臀| 亚洲精品视频在线观看免费| 一区二区在线观看免费| 日本不卡视频在线观看| 亚洲一级不卡视频| 国产精品福利一区二区三区| 日韩高清电影一区| 国产精品1区2区3区在线观看| 在线观看日韩一区| 久久麻豆一区二区| 亚洲免费观看高清完整版在线观看 | 在线播放/欧美激情| 日韩一卡二卡三卡| 欧美国产一区二区在线观看| 国产三区在线成人av| 免费人成网站在线观看欧美高清| www.av亚洲| 欧美夫妻性生活| 国产精品久久久久久久久免费桃花 | 91国产视频在线观看| 91论坛在线播放| 欧美精品一区二区三区蜜臀| 亚洲综合一区二区精品导航| 91年精品国产| 久久久久久亚洲综合影院红桃| 亚洲精选视频在线| 久久精品免费观看| 精品视频在线免费观看| 久久精品日产第一区二区三区高清版 | 26uuu成人网一区二区三区| 精品国产伦理网| 日韩电影一区二区三区| 国产ts人妖一区二区| 欧美一级视频精品观看| 精品国产电影一区二区| 中文字幕乱码亚洲精品一区| 亚洲丰满少妇videoshd| 一本色道a无线码一区v| 精品久久久久久久久久久久久久久| 樱桃视频在线观看一区| 色综合中文综合网| 久久久www成人免费毛片麻豆| 中文字幕制服丝袜一区二区三区| 色婷婷综合久久久久中文一区二区 | 亚洲激情成人在线| 欧美日韩不卡在线| 蜜臀av一区二区三区| 欧美日韩综合在线| 国产激情视频一区二区在线观看 | 日本一区二区在线不卡| 免费在线一区观看| 国产欧美在线观看一区| 国产经典欧美精品| 国产精品高潮久久久久无| 麻豆国产欧美一区二区三区| 777xxx欧美| 久久久亚洲精品石原莉奈| 激情伊人五月天久久综合| 中文字幕日韩一区| 91色在线porny| 国产美女一区二区| 亚洲电影在线免费观看| 精品国产伦一区二区三区观看体验| 国产精品性做久久久久久| 国产拍揄自揄精品视频麻豆| 欧美日韩一区不卡| 成人国产视频在线观看| 美女脱光内衣内裤视频久久影院| 精品免费国产一区二区三区四区| 久久av资源网| 亚洲欧洲www| 国产欧美日产一区| 欧美一区二区三区的| 97aⅴ精品视频一二三区| 加勒比av一区二区| 亚洲一区在线视频| 国产精品视频一区二区三区不卡| 2021国产精品久久精品| 欧美一卡二卡在线| 欧美日韩高清影院| 在线观看国产一区二区| 欧美视频在线播放| 在线欧美日韩国产| 欧美三级乱人伦电影| 97精品电影院| 成人av网站免费| 欧美日韩你懂得| 欧美不卡123| 26uuu国产电影一区二区| 精品粉嫩aⅴ一区二区三区四区| 91精品欧美福利在线观看 | 久久久精品国产免大香伊| 欧美中文字幕不卡| 日韩一级成人av| 日韩欧美一区在线| 精品国精品自拍自在线| 国产精品久久久久久久蜜臀| 亚洲一区二区三区四区的| 亚洲v日本v欧美v久久精品| 亚洲国产日日夜夜| 精品一区二区三区香蕉蜜桃| 久久精品国产久精国产| 99久久免费视频.com| 在线日韩国产精品| 在线免费亚洲电影| 久久精品一区二区三区不卡| 亚洲激情五月婷婷|