Home
last modified time | relevance | path

Searched refs:vpath (Results 1 - 21 of 21) sorted by relevance

/third_party/ffmpeg/
H A DMakefile4 vpath %.c $(SRC_PATH)
5 vpath %.cpp $(SRC_PATH)
6 vpath %.h $(SRC_PATH)
7 vpath %.inc $(SRC_PATH)
8 vpath %.m $(SRC_PATH)
9 vpath %.S $(SRC_PATH)
10 vpath %.asm $(SRC_PATH)
11 vpath %.rc $(SRC_PATH)
12 vpath %.v $(SRC_PATH)
13 vpath
[all...]
/third_party/libwebsockets/lib/core/
H A Dvfs.c73 const char **vpath) in lws_vfs_select_fops()
79 *vpath = NULL; in lws_vfs_select_fops()
105 *vpath = p + 1; in lws_vfs_select_fops()
123 const char *vpath = ""; in lws_vfs_file_open() local
126 selected = lws_vfs_select_fops(fops, vfs_path, &vpath); in lws_vfs_file_open()
128 return selected->LWS_FOP_OPEN(fops, vfs_path, vpath, flags); in lws_vfs_file_open()
72 lws_vfs_select_fops(const struct lws_plat_file_ops *fops, const char *vfs_path, const char **vpath) lws_vfs_select_fops() argument
H A Dprivate-lib-core.h924 const char **vpath);
/third_party/ltp/
H A DMakefile21 vpath %.am $(top_srcdir)/m4
22 vpath %.default $(top_srcdir)/include
23 vpath %.h $(top_srcdir)/include:$(top_builddir)/include
24 vpath %.in $(top_srcdir)/include
25 vpath %.m4 $(top_srcdir)/m4
26 vpath %.mk $(top_srcdir)/mk:$(top_srcdir)/mk/include
/third_party/libwebsockets/lib/roles/http/server/
H A Dfops-zip.c319 const char *vpath, lws_fop_flags_t *flags) in lws_fops_zip_open()
327 * vpath points at the / after the fops signature in vfs_path, eg in lws_fops_zip_open()
328 * with a vfs_path "/var/www/docs/manual.zip/index.html", vpath in lws_fops_zip_open()
339 if ((vpath - vfs_path - 1) < m) in lws_fops_zip_open()
340 m = lws_ptr_diff(vpath, vfs_path) - 1; in lws_fops_zip_open()
351 if (*vpath == '/') in lws_fops_zip_open()
352 vpath++; in lws_fops_zip_open()
354 m = lws_fops_zip_scan(priv, vpath, (int)strlen(vpath)); in lws_fops_zip_open()
356 lwsl_err("unable to find record matching '%s' %d\n", vpath, in lws_fops_zip_open()
318 lws_fops_zip_open(const struct lws_plat_file_ops *fops, const char *vfs_path, const char *vpath, lws_fop_flags_t *flags) lws_fops_zip_open() argument
[all...]
H A Dserver.c663 const char *vpath; in lws_http_serve() local
698 fops = lws_vfs_select_fops(wsi->a.context->fops, path, &vpath); in lws_http_serve()
704 path, vpath, &fflags); in lws_http_serve()
2741 const char *vpath; in lws_serve_http_file() local
2757 fops = lws_vfs_select_fops(wsi->a.context->fops, file, &vpath); in lws_serve_http_file()
2760 file, vpath, &fflags); in lws_serve_http_file()
/third_party/ltp/pan/
H A DMakefile48 vpath %.c $(abs_srcdir):$(abs_builddir)))
49 vpath %.l $(abs_srcdir)
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_bootstrap_unittest.cc172 std::string vpath = in TEST() local
176 context.ExpectFileMatches(vpath + ".pb.cc", rpath + ".pb.cc"); in TEST()
177 context.ExpectFileMatches(vpath + ".pb.h", rpath + ".pb.h"); in TEST()
/third_party/ltp/include/mk/
H A Denv_post.mk34 vpath %.c $(abs_srcdir)
35 vpath %.S $(abs_srcdir)
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-vfs.h97 const char *filename, const char *vpath,
100 * vpath may be NULL, or if the fops understands it, the point at which
258 const char *vpath, lws_fop_flags_t *flags);
/third_party/libcoap/examples/lwip/
H A DMakefile129 vpath %.c lwip/src/core/ lwip-contrib/ports/unix/proj/minimal/ \
135 vpath %.c lwip/src/core/ipv6/
149 vpath %.c $(libcoap_dir)/src
185 vpath %.c $(libcoap_dir)/ext/tinydtls $(libcoap_dir)/ext/tinydtls/sha2 $(libcoap_dir)/ext/tinydtls/aes $(libcoap_dir)/ext/tinydtls/ecc
/third_party/ltp/include/
H A DMakefile25 vpath %.h $(abs_srcdir)
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc7346 std::vector<int> vpath(path, path + 2); in TEST_F()
7347 EXPECT_TRUE(file_desc->GetSourceLocation(vpath, &loc)); in TEST_F()
7358 std::vector<int> vpath(path, path + 2); in TEST_F()
7359 EXPECT_TRUE(file_desc->GetSourceLocation(vpath, &loc)); in TEST_F()
7374 std::vector<int> vpath(path, path + 4); in TEST_F()
7375 EXPECT_TRUE(file_desc->GetSourceLocation(vpath, &loc)); in TEST_F()
7397 std::vector<int> vpath(path, path + 6); in TEST_F()
7398 EXPECT_TRUE(file_desc->GetSourceLocation(vpath, &loc)); in TEST_F()
7421 std::vector<int> vpath(path, path + 8); in TEST_F()
7422 EXPECT_TRUE(file_desc->GetSourceLocation(vpath, in TEST_F()
[all...]
/third_party/curl/src/
H A DMakefile.mk54 vpath %.c $(PROOT)/lib
/third_party/libwebsockets/lib/plat/optee/
H A Dlws-plat-optee.c162 const char *filename, const char *vpath, lws_fop_flags_t *flags) in _lws_plat_file_open()
161 _lws_plat_file_open(const struct lws_plat_file_ops *fops, const char *filename, const char *vpath, lws_fop_flags_t *flags) _lws_plat_file_open() argument
/third_party/libwebsockets/lib/plat/unix/
H A Dunix-file.c83 const char *vpath, lws_fop_flags_t *flags) in _lws_plat_file_open()
82 _lws_plat_file_open(const struct lws_plat_file_ops *fops, const char *filename, const char *vpath, lws_fop_flags_t *flags) _lws_plat_file_open() argument
/third_party/libwebsockets/lib/plat/freertos/
H A Dfreertos-file.c35 const char *vpath, lws_fop_flags_t *flags) in _lws_plat_file_open()
34 _lws_plat_file_open(const struct lws_plat_file_ops *fops, const char *filename, const char *vpath, lws_fop_flags_t *flags) _lws_plat_file_open() argument
/third_party/libwebsockets/lib/plat/windows/
H A Dwindows-file.c37 const char *vpath, lws_fop_flags_t *flags) in _lws_plat_file_open()
36 _lws_plat_file_open(const struct lws_plat_file_ops *fops, const char *filename, const char *vpath, lws_fop_flags_t *flags) _lws_plat_file_open() argument
/third_party/libwebsockets/test-apps/
H A Dtest-server.c207 const char *vfs_path, const char *vpath, in test_server_fops_open()
213 fop_fd = fops_plat.open(fops, vfs_path, vpath, flags); in test_server_fops_open()
206 test_server_fops_open(const struct lws_plat_file_ops *fops, const char *vfs_path, const char *vpath, lws_fop_flags_t *flags) test_server_fops_open() argument
/third_party/python/Lib/test/
H A Dtest_embed.py1384 vpath = sysconfig.get_config_var("VPATH") or ''
1388 stdlibdir = os.path.normpath(os.path.join(tmpdir, vpath, 'Lib'))
1417 vpath = sysconfig.get_config_var("VPATH")
1419 if os.path.normpath(vpath).count(os.sep) == 2:
1424 prefix = os.path.normpath(os.path.join(tmpdir, vpath))
1426 stdlibdir = os.path.normpath(os.path.join(tmpdir, vpath, 'Lib'))
/third_party/curl/lib/
H A DMakefile.mk315 vpath %.c vauth vquic vssh vtls

Completed in 23 milliseconds