函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\uuid.c Create Date:2022-07-27 07:17:52
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:__uuid_parse

函数原型:static int __uuid_parse(const char *uuid, __u8 b[16], const u8 ei[16])

返回类型:int

参数:

类型参数名称
const char *uuid
__u8b
const u8ei
97  static const u8 si[16] = {0, 2, 4, 6, 9, 11, 14, 16, 19, 21, 24, 26, 28, 30, 32, 34}
100  如果非d_is_valid - checks if a UUID string is valid*@uuid: UUID string to check* Description:* It checks if the UUID string is following the format:* xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx* where x is a hex digit.* Return: true if input is valid UUID string.则返回:负EINVAL
103 i小于16循环
104  hi等于十六进制数字转换为实数
105  lo等于十六进制数字转换为实数
107  b[ei[i]]等于hi左移4位按位或lo
110  返回:0
调用者
名称描述
guid_parse
uuid_parse