Searched refs:copy (Results 1 – 15 of 15) sorted by relevance
/libuv/src/unix/ |
H A D | os390-syscalls.c | 57 struct dirent* copy; in scandir() local 58 copy = uv__malloc(sizeof(*copy)); in scandir() 59 if (!copy) in scandir() 61 memcpy(copy, dirent, sizeof(*copy)); in scandir() 63 nl_copy = uv__realloc(nl, sizeof(*copy) * (count + 1)); in scandir() 65 uv__free(copy); in scandir() 70 nl[count++] = copy; in scandir()
|
/libuv/ |
H A D | autogen.sh | 58 "$LIBTOOLIZE" --copy --force 74 "$AUTOMAKE" --add-missing --copy
|
H A D | LICENSE | 3 Permission is hereby granted, free of charge, to any person obtaining a copy 6 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
H A D | LICENSE-extra | 7 Permission is hereby granted, free of charge, to any person obtaining a copy 10 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
H A D | MAINTAINERS.md | 48 The previous command returns a hash, copy it. For the sake of this explanation,
|
H A D | configure.ac | 3 # Permission to use, copy, modify, and/or distribute this software for any
|
H A D | CONTRIBUTING.md | 10 your copy.
|
H A D | CMakeLists.txt | 722 COMMAND "${CMAKE_COMMAND}" -E copy 744 COMMAND "${CMAKE_COMMAND}" -E copy
|
H A D | ChangeLog | 721 * linux: fix ceph copy error truncating readonly files (Bruno Passeri) 2441 * unix: restore skipping of phys_addr copy (cjihrig) 3147 * unix: always copy process title into local buffer (Matthew Taylor) 3625 * win: simplify memory copy logic in fs.c (Ben Noordhuis) 3857 * build: invoke libtoolize with --copy (Ben Noordhuis) 4177 * unix: don't copy arguments for sync fs requests (Ben Noordhuis)
|
/libuv/src/ |
H A D | uv-common.c | 200 char* copy; in uv__unknown_err_code() local 203 copy = uv__strdup(buf); in uv__unknown_err_code() 205 return copy != NULL ? copy : "Unknown system error"; in uv__unknown_err_code()
|
/libuv/docs/src/ |
H A D | fs.rst | 390 create a copy-on-write reflink. If the underlying platform does not 391 support copy-on-write, or an error occurs while attempting to use 392 copy-on-write, a fallback copy mechanism based on 395 attempt to create a copy-on-write reflink. If the underlying platform does 396 not support copy-on-write, or an error occurs while attempting to use 397 copy-on-write, then an error is returned.
|
H A D | misc.rst | 310 argv = uv_setup_args(argc, argv); /* May return a copy of argv. */
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 16 dnl You should have received a copy of the GNU General Public License 22 dnl macro gives unlimited permission to copy, distribute and modify the
|
H A D | ax_pthread.m4 | 69 # You should have received a copy of the GNU General Public License along 73 # gives unlimited permission to copy, distribute and modify the configure
|
/libuv/docs/src/guide/ |
H A D | filesystem.rst | 201 other, but we have to be careful to copy over the buffer data to ensure we don't 258 ``write_data()`` makes a copy of the buffer obtained from read. This buffer 261 unwrap it in the callbacks. We make a copy so we can free the two buffers from
|
Completed in 33 milliseconds