Lines Matching defs:arg
1838 static int parse_connector(struct pipe_arg *pipe, const char *arg)
1851 for (p = arg; *p && *p != ':' && *p != '@'; ++p) {
1862 for (i = 0, p = arg; i < pipe->num_cons; ++i, p = endp + 1) {
1880 arg = endp + 1;
1881 pipe->crtc_id = strtoul(arg, &endp, 10);
1886 arg = endp + 1;
1889 p = strpbrk(arg, "-@");
1891 p = arg + strlen(arg);
1892 len = min(sizeof pipe->mode_str - 1, (unsigned int)(p - arg));
1893 strncpy(pipe->mode_str, arg, len);
1970 static int parse_property(struct property_arg *p, const char *arg)
1972 if (sscanf(arg, "%d:%32[^:]:%" SCNu64, &p->obj_id, p->name, &p->value) != 3)
1981 static void parse_fill_patterns(char *arg)
1983 char *fill = strtok(arg, ",");