Lines Matching refs:fullName
123 char fullName[PARAM_NAME_LEN_MAX]; in Common2ConstDealFun() local
124 int ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, in Common2ConstDealFun()
127 ret = CheckParamName(fullName, 0); in Common2ConstDealFun()
129 PARAM_LOGV("Param name %s, value %s", fullName, value); in Common2ConstDealFun()
130 ret = WriteParam(fullName, value, NULL, 0); in Common2ConstDealFun()
131 PARAM_CHECK(ret == 0, return ret, "Failed to write param %s %s", fullName, value); in Common2ConstDealFun()
139 char fullName[PARAM_NAME_LEN_MAX]; in MatchReserverCmdline() local
148 ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, ".%s", in MatchReserverCmdline()
150 matched = strstr(tmpName, fullName); in MatchReserverCmdline()
159 ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, in MatchReserverCmdline()
171 PARAM_LOGV("proc cmdline %s matched.", fullName); in MatchReserverCmdline()
172 ret = (container->cmdLineInfo + i)->processor(fullName, nv->value); in MatchReserverCmdline()