Searched refs:newpath (Results 26 - 41 of 41) sorted by relevance

12

/macosx-10.10/apr-32/apr/apr/build/
H A Djlibtool.c1649 char foo[PATH_MAX], *newpath; local
1652 newpath = (char*)malloc(strlen(foo)+strlen(relpath)+2);
1653 strcpy(newpath, foo);
1654 strcat(newpath, "/");
1655 strcat(newpath, relpath);
1656 return newpath;
/macosx-10.10/MITKerberosShim-66/profile/
H A Dprof_file.c468 make_hard_link(const char *oldpath, const char *newpath) argument
473 return link(oldpath, newpath);
/macosx-10.10/apache-793/httpd/server/
H A Dconfig.c1569 char *newpath = NULL; local
1571 rv = apr_filepath_merge(&newpath, ap_server_root, file,
1573 if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv)
1576 return newpath;
1585 char *newpath = NULL; local
1589 rv = apr_filepath_merge(&newpath, runtime_dir, file,
1591 if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv)
1594 return newpath;
H A Dutil.c244 const char *newpath; local
246 if (apr_filepath_root(&newpath, &dir, 0, p) != APR_SUCCESS
247 || strncmp(newpath, ourdir, strlen(newpath)) != 0) {
H A Dcore.c2134 char *newpath; local
2139 apr_status_t rv = apr_filepath_merge(&newpath, NULL, cmd->path,
2146 cmd->path = newpath;
2309 char *newpath; local
2312 if (apr_filepath_merge(&newpath, "", cmd->path,
2316 cmd->path = newpath;
/macosx-10.10/kext_tools-384.1.4/
H A Dupdate_boot.c2640 char newpath[PATH_MAX]; local
2644 pathcpy(newpath, path);
2645 pathcat(newpath, NEWEXT);
2646 rval = srename(up->curbootfd, path, newpath);
2650 if (-1 == (fd=sopen(up->curbootfd, newpath, O_RDWR, 0))) goto finish;
3062 char newpath[PATH_MAX]; local
3064 pathcpy(newpath, path); // just rename
3065 pathcat(newpath, NEWEXT);
3066 (void)srename(up->curbootfd, newpath, path);
/macosx-10.10/vim-55/src/
H A Dos_win32.c226 char_u *newpath; local
232 newpath = alloc((unsigned)(STRLEN(p) + STRLEN(exe_name) + 2));
233 if (newpath != NULL)
235 STRCPY(newpath, p);
236 STRCAT(newpath, ";");
237 vim_strncpy(newpath + STRLEN(newpath), exe_name,
239 vim_setenv((char_u *)"PATH", newpath);
240 vim_free(newpath);
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dproxy_util.c966 const char *newpath = NULL; local
1001 newpath = ent[i].real;
1002 pdiff = strlen(newpath) - l1;
1030 if (newpath) {
1032 l1 = strlen(newpath);
1037 memcpy(ret + poffs, newpath, l1);
1046 memcpy(ret + poffs + ddiff, newpath, l1);
1052 memcpy(ret + poffs, newpath, l1);
/macosx-10.10/smb-759.0/lib/smb/
H A Dctx.c2732 char *newpath = CStringCreateWithCFString(dfs_ctx->mountPath); local
2734 if (newpath) {
2737 error = smb2io_check_directory(dfs_ctx, newpath, 0, &ntError);
2740 ASL_LEVEL_DEBUG, __FUNCTION__, newpath, ntError, strerror(error));
2769 free(newpath);
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_include.c1693 char *newpath; local
1696 rv = apr_filepath_merge(&newpath, NULL, tag_val,
1707 rr = ap_sub_req_lookup_file(newpath, r, NULL);
1819 char *newpath; local
1822 rv = apr_filepath_merge(&newpath, NULL, parsed_string,
1830 rr = ap_sub_req_lookup_file(newpath, r, f->next);
/macosx-10.10/ruby-106/ruby/
H A Dfile.c5184 VALUE newpath; local
5186 newpath = rb_str_new2(buf);
5189 rb_str_cat2(newpath, "/");
5190 rb_str_cat2(newpath, p0);
5191 path = newpath;
/macosx-10.10/tcl-105/tk/tk/library/
H A Dmkpsenc.tcl1290 newpath
1298 newpath
/macosx-10.10/tcl-105/tk84/tk/library/
H A Dmkpsenc.tcl1290 newpath
1298 newpath
/macosx-10.10/ruby-106/ruby/win32/
H A Dwin32.c4333 wrename(const WCHAR *oldpath, const WCHAR *newpath) argument
4340 newatts = GetFileAttributesW(newpath);
4349 SetFileAttributesW(newpath, newatts & ~ FILE_ATTRIBUTE_READONLY);
4351 if (!MoveFileExW(oldpath, newpath, MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED))
4357 SetFileAttributesW(newpath, oldatts);
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DProvider.pm241 # include_path(\@newpath)
1179 =head2 include_path(\@newpath)
/macosx-10.10/vim-55/runtime/syntax/
H A Dpostscr.vim176 syn keyword postscrOperator newpath currentpoint moveto rmoveto lineto rlineto arc arcn arcto curveto

Completed in 506 milliseconds

12