Searched defs:path_size (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/chrome/browser/importer/
H A Dimporter_unittest_utils.h16 const size_t path_size; member in struct:BookmarkInfo
/external/chromium_org/tools/gyp/test/module/src/
H A Dprogram.c63 int path_size = snprintf(module_path, MAX_PATH, "%s/%s%s", bin_dir, module, local
66 if (path_size < 0 || path_size > MAX_PATH) {
70 module_path[path_size] = 0;
/external/chromium_org/net/socket/
H A Dunix_domain_client_socket_posix.cc44 size_t path_size = socket_path.size() + 1; local
45 if (path_size > path_max)
50 address->addr_len = path_size + offsetof(struct sockaddr_un, sun_path);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h126 // stores up to 'path_size' items of the path into 'path',
127 // returns the path length, or 0 if there is no path of size 'path_size'.
128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { argument
129 if (path_size == 0)
138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
146 uptr path_size) {
147 for (uptr p = 1; p <= path_size; p++)
145 findShortestPath(uptr from, const BV &targets, uptr *path, uptr path_size) argument
H A Dsanitizer_deadlock_detector.h313 uptr path_size) {
317 uptr res = g_.findShortestPath(idx, tmp_bv_, path, path_size);
312 findPathToLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, uptr *path, uptr path_size) argument
/external/chromium_org/ppapi/proxy/
H A Dfile_ref_resource.cc32 int path_size = create_info_.internal_path.size(); local
33 if (path_size > 1 && create_info_.internal_path.at(path_size - 1) == '/')
34 create_info_.internal_path.erase(path_size - 1, 1);
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/
H A Dprocess_test.cc533 const size_t path_size = local
535 scoped_ptr<char[]> echo_path(new char[path_size]);
536 ASSERT_EQ(path_size, fread(echo_path.get(),
538 path_size,
542 path_size));
1049 const size_t path_size = local
1051 scoped_ptr<char[]> echo_path(new char[path_size]);
1052 apm->echo_control_mobile()->GetEchoPath(echo_path.get(), path_size);
1053 ASSERT_EQ(path_size, fwrite(echo_path.get(),
1055 path_size,
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dprocess_test.cc474 const size_t path_size = local
476 scoped_array<char> echo_path(new char[path_size]);
477 ASSERT_EQ(path_size, fread(echo_path.get(),
479 path_size,
483 path_size));
875 const size_t path_size = local
877 scoped_array<char> echo_path(new char[path_size]);
878 apm->echo_control_mobile()->GetEchoPath(echo_path.get(), path_size);
879 ASSERT_EQ(path_size, fwrite(echo_path.get(),
881 path_size,
[all...]
/external/clang/include/clang/AST/
H A DExpr.h2722 unsigned path_size() const { return CastExprBits.BasePathSize; } function in class:clang::StringLiteral::OffsetOfExpr::CastExpr
2724 path_iterator path_end() { return path_buffer() + path_size(); }
2726 path_const_iterator path_end() const { return path_buffer() + path_size(); }
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.pb.h2611 inline int path_size() const;
5773 inline int SourceCodeInfo_Location::path_size() const { function in class:google::protobuf::SourceCodeInfo_Location

Completed in 378 milliseconds