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