Lines Matching refs:end
358 const char *end = openssl_strnchr(start, '/',
361 if (!end)
362 end = start
364 strncpy(&result[offset], start, end - start);
365 offset += (int)(end - start);
368 start = end + 1;
372 const char *end = openssl_strnchr(start, '/',
375 if (!end)
376 end = start + file_split->dirlen - (start - file_split->dir);
377 strncpy(&result[offset], start, end - start);
378 offset += (int)(end - start);
381 start = end + 1;