Lines Matching defs:slash
273 const char *slash, *event = *pevent;
276 slash = strchr(event, '/');
277 if (!slash)
278 slash = strchr(event, '.');
280 if (slash) {
281 if (slash == event) {
285 if (slash - event + 1 > MAX_EVENT_NAME_LEN) {
289 strscpy(buf, event, slash - event + 1);
295 *pevent = slash + 1;
296 offset += slash - event + 1;
301 if (slash) {