Lines Matching defs:name
44 int uv_pipe_bind(uv_pipe_t* handle, const char* name) {
58 /* Make a copy of the file name, it outlives this function's scope. */
59 bool use_abstract = (name != NULL) && (*name == '\0');
61 size_t len = strlen(name + 1) + 2;
66 pipe_fname = memcpy(m, name, len);
68 pipe_fname = uv__strdup(name);
74 name = NULL;
143 * unlinks a socket with the same name that's just been created by
193 const char* name,
210 uv__strscpy(saddr.sun_path, name, sizeof(saddr.sun_path));