Searched defs:partial (Results 1 - 5 of 5) sorted by relevance
/system/core/libcutils/ |
H A D | fs_config.cpp | 103 // and will allow partial matches. 270 static inline bool prefix_cmp(bool partial, const char* prefix, size_t len, const char* path, argument 272 return ((partial && plen >= len) || (plen == len)) && !strncmp(prefix, path, len); 277 static bool fs_config_cmp(bool partial, const char* prefix, size_t len, const char* path, argument 279 // If name ends in * then allow partial matches. 280 if (!partial && prefix[len - 1] == '*') { 282 partial = true; 285 if (prefix_cmp(partial, prefix, len, path, plen)) return true; 299 return is_partition(prefix, len) && prefix_cmp(partial, prefix, len, path, plen);
|
/system/tools/hidl/c2hal/ |
H A D | AST.cpp | 321 std::string partial = path.substr(0, slashPos); local 324 if (stat(partial.c_str(), &st) < 0) { 329 int res = mkdir(partial.c_str(), kMode);
|
/system/tools/hidl/ |
H A D | Coordinator.cpp | 589 std::string partial = path.substr(0, slashPos); local 592 if (stat(partial.c_str(), &st) < 0) { 597 int res = mkdir(partial.c_str(), kMode);
|
/system/update_engine/ |
H A D | test_http_server.cc | 243 // If start offset is not aligned with line boundary, output partial line up 247 string partial = line.substr(start_modulo, remaining_len); local 248 ssize_t ret = WriteString(fd, partial); 249 if ((success = (ret >= 0 && (size_t) ret == partial.length()))) 250 remaining_len -= partial.length(); 260 // Output a partial line up to the end offset. 262 string partial = line.substr(0, remaining_len); local 263 ssize_t ret = WriteString(fd, partial); 264 if ((success = (ret >= 0 && (size_t) ret == partial.length()))) 265 remaining_len -= partial [all...] |
/system/bt/stack/include/ |
H A D | gatt_api.h | 470 tGATT_READ_PARTIAL partial; member in union:__anon1126
|
Completed in 7316 milliseconds