Searched refs:colon (Results 1 - 14 of 14) sorted by relevance

/linux-master/drivers/gpu/drm/
H A Ddrm_edid_load.c58 char *edidname, *last, *colon, *fwstr, *edidstr, *fallback = NULL; local
78 colon = strchr(edidname, ':');
79 if (colon != NULL) {
80 if (strncmp(connector->name, edidname, colon - edidname))
82 edidname = colon + 1;
/linux-master/net/core/
H A Ddev_ioctl.c676 char *colon; local
685 colon = strchr(ifr->ifr_name, ':');
686 if (colon)
687 *colon = 0;
697 if (colon)
698 *colon = ':';
717 if (colon)
718 *colon = ':';
724 if (colon)
725 *colon
[all...]
/linux-master/tools/lib/subcmd/
H A Dhelp.c231 char *paths, *path, *colon; local
234 if ((colon = strchr(path, ':')))
235 *colon = 0;
239 if (!colon)
241 path = colon + 1;
/linux-master/kernel/module/
H A Dkallsyms.c432 char *colon; local
434 colon = strnchr(name, MODULE_NAME_LEN, ':');
435 if (colon) {
436 mod = find_module_all(name, colon - name, false);
438 return __find_kallsyms_symbol_value(mod, colon + 1);
/linux-master/tools/perf/util/
H A Denv.c564 char *pmu_mapping = env->pmu_mappings, *colon; local
567 if (strtoul(pmu_mapping, &colon, 0) == ULONG_MAX || *colon != ':')
570 pmu_mapping = colon + 1;
H A Devsel.c539 int colon = 0, r = 0; local
545 if (!colon) colon = ++r; \
557 if (!colon)
558 colon = ++r;
568 if (colon)
569 bf[colon - 1] = ':';
/linux-master/tools/testing/selftests/nolibc/
H A Dnolibc-test.c1347 char *comma, *colon, *dash, *value; local
1354 colon = strchr(test, ':');
1355 if (colon)
1356 *(colon++) = '\0';
1365 * once. We may have an optional range at <colon>
1370 value = colon;
1372 colon = strchr(value, ':');
1373 if (colon)
1374 *(colon++) = '\0';
1388 value = colon;
[all...]
/linux-master/kernel/trace/
H A Dtrace_events_user.c1342 char *buf, int len, bool *colon)
1346 *colon = false;
1356 *colon = true;
1369 char *buf, int len, bool colon)
1380 if (colon)
1867 bool colon = false, match = false; local
1874 0, &colon);
1876 len = user_field_set_string(field, field_name, 0, colon);
1888 dyn_len, &colon);
1890 user_field_set_string(field, field_name, len, colon);
1341 user_dyn_field_set_string(int argc, const char **argv, int *iout, char *buf, int len, bool *colon) argument
1368 user_field_set_string(struct ftrace_event_field *field, char *buf, int len, bool colon) argument
[all...]
/linux-master/net/wireless/
H A Dwext-core.c1125 char *colon; local
1132 colon = strchr(iwr.ifr_name, ':');
1133 if (colon)
1134 *colon = 0;
/linux-master/net/ipv4/
H A Dfib_frontend.c528 char *colon; local
536 colon = strchr(devname, ':');
537 if (colon)
538 *colon = 0;
544 if (colon) {
552 *colon = ':';
H A Ddevinet.c1046 char *colon; local
1055 colon = strchr(ifr->ifr_name, ':');
1056 if (colon)
1057 *colon = 0;
1103 if (colon)
1104 *colon = ':';
1163 if (colon) {
1186 if (colon)
/linux-master/drivers/media/v4l2-core/
H A Dv4l2-ctrls-core.c2509 const char *prefix, const char *colon)
2516 pr_info("%s%s%s: ", prefix, colon, ctrl->name);
2542 const char *colon = ""; local
2551 colon = ": ";
2557 log_ctrl(hdl, ref->ctrl, prefix, colon);
2507 log_ctrl(const struct v4l2_ctrl_handler *hdl, struct v4l2_ctrl *ctrl, const char *prefix, const char *colon) argument
/linux-master/net/ceph/
H A Dosdmap.c2929 const char *type_name, *name, *colon; local
2934 colon = strchr(type_name, ':');
2935 if (!colon)
2938 type_name_len = colon - type_name;
2942 name = colon + 1;
/linux-master/drivers/md/
H A Ddm-crypt.c2621 char *colon, dummy; local
2628 colon = strpbrk(*key_string + 1, ":");
2629 if (!colon)
2635 *key_string = colon;

Completed in 178 milliseconds