Lines Matching refs:src
334 * @src: Source
338 * The memory areas src and dst must not overlap. os_memmove() can be used with
341 void * os_memcpy(void *dest, const void *src, size_t n);
346 * @src: Source
350 * The memory areas src and dst may overlap.
352 void * os_memmove(void *dest, const void *src, size_t n);
592 * @src: Source
594 * Returns: Total length of the target string (length of src) (not including
599 size_t os_strlcpy(char *dest, const char *src, size_t siz);
621 * @src: Source buffer to duplicate
623 * Returns: %NULL if allocation failed, copy of src buffer otherwise
628 void * os_memdup(const void *src, size_t len);