Searched defs:substr (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/Main/src-server/win/ |
H A D | HostDnsServiceWin.cpp | 222 std::string substr; local 224 while (std::getline(stream, substr, sep)) 226 if (substr.empty()) 229 if (std::find(v.cbegin(), v.cend(), substr) != v.cend()) 232 v.push_back(substr);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | pbuf.c | 1138 * @return 0xFFFF if substr was not found in p or the index where it was found 1158 /** Find occurrence of substr with length substr_len in pbuf p, start at offset 1165 * @param substr string to search for in p, maximum length is 0xFFFE 1166 * @return 0xFFFF if substr was not found in p or the index where it was found 1169 pbuf_strstr(struct pbuf* p, const char* substr) argument 1172 if ((substr == NULL) || (substr[0] == 0) || (p->tot_len == 0xFFFF)) { 1175 substr_len = strlen(substr); 1179 return pbuf_memfind(p, substr, (u16_t)substr_len, 0);
|
/vbox/include/iprt/cpp/ |
H A D | ministring.h | 735 RTCString substr(size_t pos = 0, size_t n = npos) const function in class:RTCString 741 * Returns a substring of "this" as a new Utf8Str. As opposed to substr(),
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/ |
H A D | dtrace.c | 3668 char *substr = (char *)(uintptr_t)tupregs[1].dttk_value; local 3671 size_t sublen = dtrace_strlen(substr, size); 3683 if (!dtrace_canload((uintptr_t)substr, sublen + 1, mstate, 3723 * substr(), but it appears to reflect a 3748 * substr(), index() and rindex() -- or at the 3781 if (dtrace_strncmp(addr, substr, sublen) == 0) {
|
Completed in 65 milliseconds