/openthread-latest/third_party/mbedtls/repo/programs/test/ |
D | udp_proxy_wrapper.sh | 43 tail="$1" quoted="" 44 while [ -n "$tail" ]; do 45 case "$tail" in 46 *\'*) quoted="${quoted}${tail%%\'*}'\\''" tail="${tail#*\'}";; 47 *) quoted="${quoted}${tail}"; tail=; false;; 53 unset tail quoted
|
/openthread-latest/third_party/tcplp/lib/ |
D | lbuf.c | 41 otLinkedBuffer* tail = buffer->tail; in lbuf_append() local 42 if (tail == NULL) { in lbuf_append() 44 buffer->tail = newentry; in lbuf_append() 49 tail->mNext = newentry; in lbuf_append() 50 buffer->tail = newentry; in lbuf_append() 57 buffer->tail->mLength += numbytes; in lbuf_extend() 72 if (buffer->tail == curr) { in lbuf_pop() 74 buffer->tail = NULL; in lbuf_pop()
|
D | lbuf.h | 42 struct otLinkedBuffer* tail; member
|
/openthread-latest/src/core/common/ |
D | tasklet.cpp | 95 Tasklet *tail = mTail; in ProcessQueuedTasklets() local 105 while (tail != nullptr) in ProcessQueuedTasklets() 107 Tasklet *tasklet = tail->mNext; in ProcessQueuedTasklets() 109 if (tasklet == tail) in ProcessQueuedTasklets() 111 tail = nullptr; in ProcessQueuedTasklets() 115 tail->mNext = tasklet->mNext; in ProcessQueuedTasklets()
|
D | linked_list.hpp | 176 Type *tail = GetTail(); in PushAfterTail() local 178 if (tail == nullptr) in PushAfterTail() 184 PushAfter(aEntry, *tail); in PushAfterTail() 529 const Type *tail = mHead; in GetTail() local 531 if (tail != nullptr) in GetTail() 533 while (tail->GetNext() != nullptr) in GetTail() 535 tail = tail->GetNext(); in GetTail() 539 return tail; in GetTail()
|
D | message.cpp | 255 Message *tail; in GetNext() local 261 tail = priorityQueue->GetTail(); in GetNext() 267 tail = messageQueue->GetTail(); in GetNext() 270 next = (this == tail) ? nullptr : Next(); in GetNext() 964 const Message *tail = nullptr; in FindFirstNonNullTail() local 973 tail = mTails[priority]; in FindFirstNonNullTail() 980 return tail; in FindFirstNonNullTail() 1014 Message *tail; in Enqueue() local 1023 tail = FindFirstNonNullTail(priority); in Enqueue() 1025 if (tail != nullptr) in Enqueue() [all …]
|
/openthread-latest/examples/apps/cli/ |
D | cli_uart.cpp | 250 uint16_t tail; in Output() local 260 tail = (sTxHead + sTxLength) % kTxBufferSize; in Output() 261 sTxBuffer[tail] = *aBuf++; in Output() 310 uint16_t tail = (sTxHead + sTxLength) % kTxBufferSize; in CliUartOutput() local 311 uint16_t remaining = (sTxHead > tail ? (sTxHead - tail) : (kTxBufferSize - tail)); in CliUartOutput() 315 rval = vsnprintf(&sTxBuffer[tail], remaining, aFormat, aArguments); in CliUartOutput()
|
/openthread-latest/third_party/mbedtls/repo/tests/scripts/ |
D | basic-build-test.sh | 151 …PASSED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/test cases passed :[\t]*\([0-9]*\)/\1/… 152 …SKIPPED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/skipped :[ \t]*\([0-9]*\)/\1/p'| tr -… 153 …TOTAL_SUITES=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) .*, [0-9]* tests run)/\… 154 …FAILED_TESTS=$(tail -n6 unit-test-$TEST_OUTPUT|sed -n -e 's/failed :[\t]*\([0-9]*\)/\1/p' |tr -d '… 173 …PASSED_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* (\([0-9]*\) \/ [0-9]* tests ([0-9]* … 174 …SKIPPED_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* ([0-9]* \/ [0-9]* tests (\([0-9]*\)… 175 …TOTAL_TESTS=$(tail -n5 sys-test-$TEST_OUTPUT|sed -n -e 's/.* ([0-9]* \/ \([0-9]*\) tests ([0-9]* s…
|
D | psa_collect_statuses.py | 42 value, function, tail = line.split(':', 2) 48 fdata[value].append(tail)
|
D | travis-log-failure.sh | 30 tail -c $MAX_LOG_SIZE $LOG
|
/openthread-latest/tools/harness-simulation/harness/Thread_Harness/THCI/ |
D | OpenThread_Sim.py | 178 tail = '' 180 tail = self.__lines.pop() 182 tail += self.__handle.recv() 184 self.__lines += self._lineSepX.split(tail)
|
/openthread-latest/tools/harness-thci/ |
D | OpenThread_BR.py | 255 tail = self.__lines.pop() 258 tail += self.__bashRead(timeout=timeout) 259 tail = tail.replace(RPI_FULL_PROMPT, RPI_FULL_PROMPT + '\r\n') 260 tail = tail.replace(RPI_USERNAME_PROMPT, RPI_USERNAME_PROMPT + '\r\n') 261 tail = tail.replace(RPI_PASSWORD_PROMPT, RPI_PASSWORD_PROMPT + '\r\n') 263 self.__lines += [l.rstrip('\r') for l in LINESEPX.split(tail)]
|
D | OpenThread_WpanCtl.py | 155 tail = '' 157 tail = self._lines.pop() 160 tail += self._read() 165 self._lines += LINESEPX.split(tail)
|
D | OpenThread.py | 3377 tail = '' 3379 tail = self.__lines.pop() 3382 tail += self.__socRead() 3387 self.__lines += self._lineSepX.split(tail)
|
/openthread-latest/tools/harness-automation/autothreadharness/ |
D | open_thread_controller.py | 159 tail = '' 161 tail = self.lines.pop() 164 tail += self._read() 169 self.lines += linesepx.split(tail)
|
D | harness_controller.py | 141 def tail(self): member in HarnessController
|
/openthread-latest/script/ |
D | check-posix-pty | 57 CORE_PTY=$(head -n2 "$SOCAT_OUTPUT" | tail -n1 | grep -o '/dev/.\+') 222 extaddr=$(grep -ao -A +1 'extaddr' $OT_OUTPUT | tail -n1 | tr -d '\r\n\0')
|
/openthread-latest/src/core/net/ |
D | netif.cpp | 92 MulticastAddress *tail; in SubscribeAllNodesMulticast() local 102 tail = mMulticastAddresses.GetTail(); in SubscribeAllNodesMulticast() 104 if (tail == nullptr) in SubscribeAllNodesMulticast() 110 tail->SetNext(&linkLocalAllNodesAddress); in SubscribeAllNodesMulticast()
|
/openthread-latest/tests/scripts/expect/ |
D | posix-rcp-stack-reset.exp | 42 set host_pty [exec head -n2 $socat_out | tail -n1 | grep -o {/dev/.\+}]
|
D | posix-rcp-restoration.exp | 42 set host_pty [exec head -n2 $socat_out | tail -n1 | grep -o {/dev/.\+}]
|
/openthread-latest/third_party/mbedtls/repo/programs/x509/ |
D | cert_write.c | 500 mbedtls_asn1_sequence **tail = &opt.ext_key_usage; in main() local 528 *tail = ext_key_usage; in main() 529 tail = &ext_key_usage->next; in main()
|
/openthread-latest/src/core/thread/ |
D | address_resolver.cpp | 431 CacheEntry *tail; in RestartAddressQueries() local 437 tail = mQueryList.GetTail(); in RestartAddressQueries() 439 if (tail == nullptr) in RestartAddressQueries() 445 tail->SetNext(mQueryRetryList.GetHead()); in RestartAddressQueries()
|
/openthread-latest/third_party/mbedtls/repo/scripts/ |
D | common.make | 67 tail -n 1
|
/openthread-latest/tests/unit/ |
D | test_spinel_buffer.cpp | 909 uint32_t tail = sFrameBufferTailIndex[priority]; in WriteRandomFrame() local 917 sFrameBuffer[priority][tail++] = byte; in WriteRandomFrame() 922 sFrameBufferTailIndex[priority] = tail; in WriteRandomFrame()
|
/openthread-latest/tests/toranj/ |
D | start.sh | 73 tail -n 40 "${log_file_name}"*.log
|