===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
iotjs-1.0+715/cmake/iotjs.cmake-20-
iotjs-1.0+715/cmake/iotjs.cmake:21:include(${CMAKE_CURRENT_LIST_DIR}/JSONParser.cmake)
iotjs-1.0+715/cmake/iotjs.cmake-22-
##############################################
iotjs-1.0+715/cmake/iotjs.cmake-407-  # - MODULE_LIBS - list of libraries to use during linking (set this)
iotjs-1.0+715/cmake/iotjs.cmake:408:  include(${MODULE_EXTRA_CMAKE_FILE})
iotjs-1.0+715/cmake/iotjs.cmake-409-
##############################################
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md-21-Name the build platform. E.g., copy the output of
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md:22:`echo "$(lsb_release -ds) ($(uname -mrs))"` (on Linux),
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md:23:`echo "$(sw_vers -productName) $(sw_vers -productVersion) ($(uname -mrs))"` (on macOS), or
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md-24-`python -c "import platform; print(platform.platform())"` (should work everywhere).
##############################################
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md-53-
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md:54:###### Execution platform
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md-55-Unnecessary if the same as the build platform.
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md-56-
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md:57:###### Execution steps
iotjs-1.0+715/deps/jerry/.github/ISSUE_TEMPLATE/bug_report.md-58-List the steps that trigger the bug.
##############################################
iotjs-1.0+715/deps/jerry/docs/03.API-EXAMPLE.md-22-
iotjs-1.0+715/deps/jerry/docs/03.API-EXAMPLE.md:23:With this the JerryScript library is installed into the `$(pwd)/example_install/{include,lib}` directories.
iotjs-1.0+715/deps/jerry/docs/03.API-EXAMPLE.md-24-
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-46-/* In this case we simply store the pointer, since it fits anyway. */
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:47:#define JMEM_HEAP_GET_OFFSET_FROM_ADDR(p) ((uint32_t) (p))
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-48-#define JMEM_HEAP_GET_ADDR_FROM_OFFSET(u) ((jmem_heap_free_t *) (u))
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-49-#else /* !ECMA_VALUE_CAN_STORE_UINTPTR_VALUE_DIRECTLY */
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:50:#define JMEM_HEAP_GET_OFFSET_FROM_ADDR(p) ((uint32_t) ((uint8_t *) (p) - JERRY_HEAP_CONTEXT (area)))
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-51-#define JMEM_HEAP_GET_ADDR_FROM_OFFSET(u) ((jmem_heap_free_t *) (JERRY_HEAP_CONTEXT (area) + (u)))
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-89-  JERRY_HEAP_CONTEXT (first).size = 0;
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:90:  JERRY_HEAP_CONTEXT (first).next_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (region_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-91-
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-162-
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:163:      JERRY_HEAP_CONTEXT (first).next_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (remaining_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-164-    }
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-207-          JMEM_VALGRIND_DEFINED_SPACE (prev_p, sizeof (jmem_heap_free_t));
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:208:          prev_p->next_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (remaining_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-209-          JMEM_VALGRIND_NOACCESS_SPACE (prev_p, sizeof (jmem_heap_free_t));
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-373-  JERRY_ASSERT (jmem_is_heap_pointer (block_p));
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:374:  const uint32_t block_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (block_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-375-
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-412-
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:413:  const uint32_t block_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (block_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-414-
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-437-  {
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:438:    block_p->next_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (next_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-439-  }
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-564-        JMEM_VALGRIND_NOACCESS_SPACE (new_next_p, sizeof (jmem_heap_free_t));
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:565:        prev_p->next_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (new_next_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-566-      }
##############################################
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-591-        JMEM_VALGRIND_DEFINED_SPACE (prev_p, sizeof (jmem_heap_free_t));
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c:592:        prev_p->next_offset = JMEM_HEAP_GET_OFFSET_FROM_ADDR (next_p);
iotjs-1.0+715/deps/jerry/jerry-core/jmem/jmem-heap.c-593-      }
##############################################
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c-163-#if defined (__x86_64__)
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c:164:#define STACK_SAVE(TARGET) { __asm volatile ("mov %%rsp, %0" : "=m" (TARGET)); }
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c-165-#elif defined (__i386__)
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c:166:#define STACK_SAVE(TARGET) { __asm volatile ("mov %%esp, %0" : "=m" (TARGET)); }
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c-167-#elif defined (__arm__)
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c:168:#define STACK_SAVE(TARGET) { __asm volatile ("mov %0, sp" : "=r" (TARGET)); }
iotjs-1.0+715/deps/jerry/jerry-main/main-unix-test.c-169-#else /* !defined (__x86_64__) && !defined (__i386__) && !defined (__arm__) */
##############################################
iotjs-1.0+715/deps/jerry/targets/esp8266/docs/ESP-PREREQUISITES.md-14-The rest of this document will assume that you download all necessary tools into
iotjs-1.0+715/deps/jerry/targets/esp8266/docs/ESP-PREREQUISITES.md:15:a common directory structure. For the sake of simplicity, `$HOME/Espressif` will
iotjs-1.0+715/deps/jerry/targets/esp8266/docs/ESP-PREREQUISITES.md-16-be used as the root of this structure. Feel free to deviate from this but then
##############################################
iotjs-1.0+715/deps/jerry/targets/esp8266/docs/ESP-PREREQUISITES.md-25-Download the [toolchain](https://github.com/espressif/ESP8266_RTOS_SDK/tree/v3.0.1#get-toolchain)
iotjs-1.0+715/deps/jerry/targets/esp8266/docs/ESP-PREREQUISITES.md:26:pre-built for your development platform to `$HOME/Espressif` and untar it. E.g.,
iotjs-1.0+715/deps/jerry/targets/esp8266/docs/ESP-PREREQUISITES.md-27-on Linux/x86-64:
##############################################
iotjs-1.0+715/deps/jerry/targets/zephyr/CMakeLists.txt-15-
iotjs-1.0+715/deps/jerry/targets/zephyr/CMakeLists.txt:16:include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
iotjs-1.0+715/deps/jerry/targets/zephyr/CMakeLists.txt-17-project(NONE)
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/identifier-escape.js-26-eval("\\u{10C80}: break \ud803\udc80")
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/identifier-escape.js:27:eval("$\u{000010C80}$: break $\ud803\udc80$")
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/identifier-escape.js:28:eval("$\\u{10C82}$: break $\ud803\udc82$")
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/identifier-escape.js-29-
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-covered-parenthesized-exp-assign.js-100-  '(``) = 42;',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-covered-parenthesized-exp-assign.js:101:  'a = 5; (`${a}`) = 42;',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-covered-parenthesized-exp-assign.js-102-  '(`\\a`) = 42;',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-delete-op-assign.js-68-  'var a = ``; delete a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-delete-op-assign.js:69:  'a = 5; var b = (`${a}`); delete b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-delete-op-assign.js-70-  'var a = `foo`; delete a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-not-op-assign.js-103-  'var a = ``; !a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-not-op-assign.js:104:  'a = 5; var b = (`${a}`); !b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-not-op-assign.js-105-  'var a = `foo`; !a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-not-op-assign.js-107-  'var a = ``; ~a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-not-op-assign.js:108:  'a = 5; var b = (`${a}`); ~b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-not-op-assign.js-109-  'var a = `foo`; ~a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-plus-negation-op-assign.js-103-  'var a = ``; +a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-plus-negation-op-assign.js:104:  'a = 5; var b = (`${a}`); +b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-plus-negation-op-assign.js-105-  'var a = `foo`; +a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-plus-negation-op-assign.js-107-  'var a = ``; -a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-plus-negation-op-assign.js:108:  'a = 5; var b = (`${a}`); -b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-plus-negation-op-assign.js-109-  'var a = `foo`; -a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-postfix-exp-assign.js-103-  'var a = ``; a++ = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-postfix-exp-assign.js:104:  'a = 5; var b = (`${a}`); b++ = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-postfix-exp-assign.js-105-  'var a = `foo`; a++ = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-postfix-exp-assign.js-107-  'var a = ``; a-- = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-postfix-exp-assign.js:108:  'a = 5; var b = (`${a}`); b-- = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-postfix-exp-assign.js-109-  'var a = `foo`; a-- = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-prefix-exp-assign.js-103-  'var a = ``; ++a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-prefix-exp-assign.js:104:  'a = 5; var b = (`${a}`); b++ = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-prefix-exp-assign.js-105-  'var a = `foo`; ++a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-prefix-exp-assign.js-107-  'var a = ``; --a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-prefix-exp-assign.js:108:  'a = 5; var b = (`${a}`); --b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-prefix-exp-assign.js-109-  'var a = `foo`; --a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-typeof-op-assign.js-68-  'var a = ``; typeof a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-typeof-op-assign.js:69:  'a = 5; var b = (`${a}`); typeof b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-typeof-op-assign.js-70-  'var a = `foo`; typeof a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-void-op-assign.js-68-  'var a = ``; void a = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-void-op-assign.js:69:  'a = 5; var b = (`${a}`); void b = 42',
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/parser-void-op-assign.js-70-  'var a = `foo`; void a = 42',
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-2667.js-15-try {
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-2667.js:16:  eval ("new Strin = class extends f ()() { constructor () { var C = class extends$B {}");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-2667.js-17-  assert (false);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3454.js-16-try {
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3454.js:17:  eval("var $ = function yield() {}");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3454.js-18-  assert(false);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3519.js-15-try {
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3519.js:16:  eval('function method () { [""] = $ }');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3519.js-17-  assert(false);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3849.js-15-try {
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3849.js:16:  eval(`[]=$--['']`);
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regression-test-issue-3849.js-17-  assert(false);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regresssion-test-issue-3841.js-15-try {
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regresssion-test-issue-3841.js:16:  eval('$?$:$=>{ }?{ }:$')
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/regresssion-test-issue-3841.js-17-  assert(false)
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/string-raw.js-46-// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/raw
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/string-raw.js:47:assert(String.raw`Hi\n${2+3}!` === 'Hi\\n5!');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/string-raw.js-48-assert(String.raw`Hi\u000A!` === 'Hi\\u000A!');
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/string-raw.js-50-let name = 'Bob';
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/string-raw.js:51:assert(String.raw`Hi\n${name}!` === "Hi\\nBob!");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/string-raw.js-52-
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/symbol-prototype-description.js-18-assert(Symbol.for('foo').description === "foo");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/symbol-prototype-description.js:19:assert(`${Symbol('foo').description}bar` === "foobar");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/symbol-prototype-description.js-20-
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/symbol-prototype.toprimitive.js-28-  assert(+obj2 === 10);
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/symbol-prototype.toprimitive.js:29:  assert(`${obj2}` === "hello");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/symbol-prototype.toprimitive.js-30-  assert(obj2 + '' === "true");
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-33-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:34:  return `${str0}${personExp}${str1}${ageStr}`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-35-}
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-36-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:37:var output = myTag`That ${ person } is a ${ age }`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-38-assert(output === "That Mike is a youngster");
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-51-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:52:var t1Closure = template`${0}${1}${0}!`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-53-assert(t1Closure('Y', 'A') === "YAY!");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:54:var t2Closure = template`${0} ${'foo'}!`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-55-assert(t2Closure('Hello', {foo: 'World'}) === "Hello World!");
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-65-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:66:assert (String.raw`Hi\n${2+3}!` === "Hi\\n5!");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-67-
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-77-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:78:  empty`${1}${1}${1}`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-79-})();
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-104-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:105:  assert(testRaw `str${123}escaped\n${456}` === true);
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-106-})();
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-147-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:148:  var a = new f`${1}${2}${3}`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-149-  assert(a.length === 3);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-157-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:158:  a = new g`${1}${2}${3}`(4, 5, 6);
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-159-  assert(a.length === 3);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-164-  try {
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js:165:    new (g`${1}${2}${3}`(4, 5, 6));
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/tagged-template-literal.js-166-    assert(false);
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-45-  `abc`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:46:  `ab${a+b}${ `x` }c`;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-47-
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-54-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:55:  assert (`prefix${a}` === 'prefixA');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:56:  assert (`${a}postfix` === 'Apostfix');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:57:  assert (`prefix${a}postfix` === 'prefixApostfix');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-58-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:59:  assert (`${a}${b}` === 'AB');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:60:  assert (`${a},${b}` === 'A,B');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:61:  assert (`${a}${b}${a}${b}` === 'ABAB');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:62:  assert (`${a},${b},${a},${b}` === 'A,B,A,B');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:63:  assert (`$${a},${b},${a},${b}$` === '$A,B,A,B$');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-64-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:65:  assert (`\${}` === '${}');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:66:  assert (`$\{}` === '${}');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:67:  assert (`x${  `y` + `z`  }x` === 'xyzx');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:68:  assert (`x${  `y` , `z`  }x` === 'xzx');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-69-
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-73-  var c = 1;
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:74:  assert (`x${  f(1) * f(2)  }x${ c = 4 }` === 'x6x4');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-75-  assert (c === 4);
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:76:  assert (`m${0 || 93}n${7 && 0}o` === 'm93n0o');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-77-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-78-  /* Result is always a string. */
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:79:  assert (`${  function() { return true } () }` === 'true');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:80:  assert (`${  function() { return a.length } () }` === '1');
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-81-
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-82-  /* Result is a single string with its properties. */
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:83:  assert(`${a}${b}${a}${b}`.length === 4);
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-84-}
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-88-must_throw ("`${7");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js:89:must_throw ("`${}`");
iotjs-1.0+715/deps/jerry/tests/jerry/es.next/template_string.js-90-must_throw ("`${1}");
##############################################
iotjs-1.0+715/deps/jerry/tests/jerry/regression-test-issue-1079.js-16-Object.freeze(Array.prototype)
iotjs-1.0+715/deps/jerry/tests/jerry/regression-test-issue-1079.js:17:try { new RegExp().constructor.prototype.exec()  } catch($){}
##############################################
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-224-   complete inline asm, since it needs to be combined with more magic
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:225:   inline asm stuff to be useful.
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-226-*/
##############################################
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-296-#define __SPECIAL_INSTRUCTION_PREAMBLE                            \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:297:                     __asm rol edi, 3  __asm rol edi, 13          \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:298:                     __asm rol edi, 29 __asm rol edi, 19
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-299-
##############################################
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-321-    _zzq_args[5] = (uintptr_t)(_zzq_arg5);
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:322:    __asm { __asm lea eax, _zzq_args __asm mov edx, _zzq_default
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-323-            __SPECIAL_INSTRUCTION_PREAMBLE
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-324-            /* %EDX = client_request ( %EAX ) */
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:325:            __asm xchg ebx,ebx
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:326:            __asm mov _zzq_result, edx
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-327-    }
##############################################
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-333-    volatile unsigned int __addr;                                 \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:334:    __asm { __SPECIAL_INSTRUCTION_PREAMBLE                        \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-335-            /* %EAX = guest_NRADDR */                             \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:336:            __asm xchg ecx,ecx                                    \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h:337:            __asm mov __addr, eax                                 \
iotjs-1.0+715/deps/jerry/third-party/valgrind/valgrind.h-338-    }                                                             \
##############################################
iotjs-1.0+715/deps/jerry/tools/babel/README.md-28-
iotjs-1.0+715/deps/jerry/tools/babel/README.md:29:`$ sudo apt update`
iotjs-1.0+715/deps/jerry/tools/babel/README.md-30-
##############################################
iotjs-1.0+715/deps/jerry/tools/babel/README.md-32-
iotjs-1.0+715/deps/jerry/tools/babel/README.md:33:`$ sudo apt install nodejs`
iotjs-1.0+715/deps/jerry/tools/babel/README.md-34-
##############################################
iotjs-1.0+715/deps/jerry/tools/babel/README.md-43-
iotjs-1.0+715/deps/jerry/tools/babel/README.md:44:`$ sudo apt install npm`
iotjs-1.0+715/deps/jerry/tools/babel/README.md-45-
##############################################
iotjs-1.0+715/deps/jerry/tools/babel/README.md-56-
iotjs-1.0+715/deps/jerry/tools/babel/README.md:57:`$ sudo npm install`
iotjs-1.0+715/deps/jerry/tools/babel/README.md-58-
##############################################
iotjs-1.0+715/deps/jerry/tools/babel/README.md-62-
iotjs-1.0+715/deps/jerry/tools/babel/README.md:63:`$ npm run transpile [name of input file/directory] [(OPTIONAL)name of output file/directory]`
iotjs-1.0+715/deps/jerry/tools/babel/README.md-64-
##############################################
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh-87-# Checking the last line
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh:88:actual_signed_off_by_line=`git show -s --format=%B $commit_hash | sed '/^$/d' | tr -d '\015' | tail -n 1`
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh-89-
##############################################
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh-91-then
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh:92: author_name=`git show -s --format=%an $commit_hash`
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh:93: author_email=`git show -s --format=%ae $commit_hash`
iotjs-1.0+715/deps/jerry/tools/check-signed-off.sh-94- required_signed_off_by_line="JerryScript-DCO-1.0-Signed-off-by: $author_name $author_email"
##############################################
iotjs-1.0+715/deps/jerry/tools/check-vera.sh-25-then
iotjs-1.0+715/deps/jerry/tools/check-vera.sh:26:MANUAL_CHECK_FILES=`find $1 -name "*.c" -or -name "*.h"`
iotjs-1.0+715/deps/jerry/tools/check-vera.sh-27-fi
##############################################
iotjs-1.0+715/deps/jerry/tools/mem-stats-measure.sh-19-
iotjs-1.0+715/deps/jerry/tools/mem-stats-measure.sh:20:MEM_PEAK=`$JERRY $TEST --mem-stats | grep "Peak allocated =" | awk '{print $4}'`
iotjs-1.0+715/deps/jerry/tools/mem-stats-measure.sh-21-
##############################################
iotjs-1.0+715/deps/jerry/tools/perf.sh-29-
iotjs-1.0+715/deps/jerry/tools/perf.sh:30:perf_values=$( (( for i in `seq 1 1 $ITERS`; do time $ENGINE "$BENCHMARK"; if [ $? -ne 0 ]; then exit 1; fi; done ) 2>&1 ) | \
iotjs-1.0+715/deps/jerry/tools/perf.sh-31-               grep user | \
##############################################
iotjs-1.0+715/deps/jerry/tools/rss-measure.sh-30-  then
iotjs-1.0+715/deps/jerry/tools/rss-measure.sh:31:    SUM=`ps -o rss $PID | grep [0-9]`
iotjs-1.0+715/deps/jerry/tools/rss-measure.sh-32-  else
##############################################
iotjs-1.0+715/deps/jerry/tools/run-mem-stats-test.sh-77-do
iotjs-1.0+715/deps/jerry/tools/run-mem-stats-test.sh:78:  test=`basename $bench .js`
iotjs-1.0+715/deps/jerry/tools/run-mem-stats-test.sh-79-
##############################################
iotjs-1.0+715/deps/jerry/tools/runners/run-debugger-test.sh-41-
iotjs-1.0+715/deps/jerry/tools/runners/run-debugger-test.sh:42:RESULT_TEMP=`mktemp ${TEST_CASE}.out.XXXXXXXXXX`
iotjs-1.0+715/deps/jerry/tools/runners/run-debugger-test.sh-43-
##############################################
iotjs-1.0+715/deps/jerry/tools/srcmerger.py-28-
iotjs-1.0+715/deps/jerry/tools/srcmerger.py:29:    _RE_INCLUDE = re.compile(r'\s*#include ("|<)(.*?)("|>)\n$')
iotjs-1.0+715/deps/jerry/tools/srcmerger.py-30-
##############################################
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh-22-gh_pages_dir=$1
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh:23:docs_dir=`dirname $(readlink -f $0)`"/../docs"
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh-24-
##############################################
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh-63-for docfile in $docs_dir/*.md; do
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh:64:  docfile_base=`basename $docfile`
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh-65-
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh:66:  permalink=`echo $docfile_base | cut -d'.' -f 2 | tr '[:upper:]' '[:lower:]'`
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh:67:  missing_title=`echo $permalink | tr '-' ' '`
iotjs-1.0+715/deps/jerry/tools/update-webpage.sh-68-
##############################################
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-linux.cmake-29-  else()
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-linux.cmake:30:    message(FATAL_ERROR "TARGET_BOARD=`${TARGET_BOARD}` is unknown to make")
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-linux.cmake-31-  endif()
##############################################
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-mbed.cmake-49-  else()
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-mbed.cmake:50:    message(FATAL_ERROR "TARGET_BOARD=`${TARGET_BOARD}` is unknown to make")
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-mbed.cmake-51-  endif()
##############################################
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-nuttx.cmake-51-  else()
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-nuttx.cmake:52:    message(FATAL_ERROR "TARGET_BOARD=`${TARGET_BOARD}` is unknown to make")
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-nuttx.cmake-53-  endif()
##############################################
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-tizen.cmake-28-  else()
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-tizen.cmake:29:    message(FATAL_ERROR "TARGET_BOARD=`${TARGET_BOARD}` is unknown to make")
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-tizen.cmake-30-  endif()
##############################################
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-tizenrt.cmake-34-  else()
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-tizenrt.cmake:35:    message(FATAL_ERROR "TARGET_BOARD=`${TARGET_BOARD}` is unknown to make")
iotjs-1.0+715/deps/libtuv/cmake/option/option_arm-tizenrt.cmake-36-  endif()
##############################################
iotjs-1.0+715/deps/libtuv/cmake/option/option_noarch-tizen.cmake-28-  else()
iotjs-1.0+715/deps/libtuv/cmake/option/option_noarch-tizen.cmake:29:    message(FATAL_ERROR "TARGET_BOARD=`${TARGET_BOARD}` is unknown to make")
iotjs-1.0+715/deps/libtuv/cmake/option/option_noarch-tizen.cmake-30-  endif()
##############################################
iotjs-1.0+715/deps/libtuv/cmake/options.cmake-39-set(TUV_PLATFORM_PATH ${TARGET_PLATFORM})
iotjs-1.0+715/deps/libtuv/cmake/options.cmake:40:include("cmake/option/option_${TARGET_PLATFORM}.cmake")
iotjs-1.0+715/deps/libtuv/cmake/options.cmake-41-
##############################################
iotjs-1.0+715/deps/libtuv/include/uv.h-1403-
iotjs-1.0+715/deps/libtuv/include/uv.h:1404:UV_EXTERN int uv_ip4_addr(const char* ip, int port, struct sockaddr_in* addr);
iotjs-1.0+715/deps/libtuv/include/uv.h:1405:UV_EXTERN int uv_ip6_addr(const char* ip, int port, struct sockaddr_in6* addr);
iotjs-1.0+715/deps/libtuv/include/uv.h-1406-
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-276-
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c:277:static void makeSockaddr(sa_family_t p_family, struct sockaddr *p_dest, void *p_data, size_t p_size)
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-278-{
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-382-                size_t l_addrLen = calcAddrLen(AF_PACKET, l_rtaDataSize);
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c:383:                makeSockaddr(AF_PACKET, (struct sockaddr *)l_addr, l_rtaData, l_rtaDataSize);
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-384-                ((struct sockaddr_ll *)l_addr)->sll_ifindex = l_info->ifi_index;
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-434-
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c:435:static int interpretAddr(struct nlmsghdr *p_hdr, struct ifaddrs **p_resultList, int p_numLinks)
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-436-{
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-509-                size_t l_addrLen = calcAddrLen(l_info->ifa_family, l_rtaDataSize);
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c:510:                makeSockaddr(l_info->ifa_family, (struct sockaddr *)l_addr, l_rtaData, l_rtaDataSize);
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-511-                if(l_info->ifa_family == AF_INET6)
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-572-
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c:573:        makeSockaddr(l_entry->ifa_addr->sa_family, (struct sockaddr *)l_addr, l_mask, l_maxPrefix / 8);
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-574-        l_entry->ifa_netmask = (struct sockaddr *)l_addr;
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-635-            {
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c:636:                if (interpretAddr(l_hdr, p_resultList, p_numLinks) == -1)
iotjs-1.0+715/deps/libtuv/src/unix/android-ifaddrs.c-637-                {
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/darwin.c-313-        sa_addr = (struct sockaddr_dl*)(ent->ifa_addr);
iotjs-1.0+715/deps/libtuv/src/unix/darwin.c:314:        memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr));
iotjs-1.0+715/deps/libtuv/src/unix/darwin.c-315-      }
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/freebsd.c-438-        sa_addr = (struct sockaddr_dl*)(ent->ifa_addr);
iotjs-1.0+715/deps/libtuv/src/unix/freebsd.c:439:        memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr));
iotjs-1.0+715/deps/libtuv/src/unix/freebsd.c-440-      }
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/netbsd.c-359-        sa_addr = (struct sockaddr_dl*)(ent->ifa_addr);
iotjs-1.0+715/deps/libtuv/src/unix/netbsd.c:360:        memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr));
iotjs-1.0+715/deps/libtuv/src/unix/netbsd.c-361-      }
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/openbsd.c-374-        sa_addr = (struct sockaddr_dl*)(ent->ifa_addr);
iotjs-1.0+715/deps/libtuv/src/unix/openbsd.c:375:        memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr));
iotjs-1.0+715/deps/libtuv/src/unix/openbsd.c-376-      }
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c-702- */
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c:703:static int uv__set_phys_addr(uv_interface_address_t* address,
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c-704-                             struct ifaddrs* ent) {
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c-712-  sa_addr = (struct sockaddr_dl*)(ent->ifa_addr);
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c:713:  memcpy(address->phys_addr, LLADDR(sa_addr), sizeof(address->phys_addr));
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c-714-  for (i = 0; i < sizeof(address->phys_addr); i++) {
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c-800-
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c:801:    uv__set_phys_addr(address, ent);
iotjs-1.0+715/deps/libtuv/src/unix/sunos.c-802-    address++;
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-624-  if (interface_addr) {
iotjs-1.0+715/deps/libtuv/src/unix/udp.c:625:    if (uv_ip6_addr(interface_addr, 0, &addr6))
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-626-      return -EINVAL;
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-729-
iotjs-1.0+715/deps/libtuv/src/unix/udp.c:730:  if (uv_ip4_addr(multicast_addr, 0, &addr4) == 0) {
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-731-    err = uv__udp_maybe_deferred_bind(handle, AF_INET, UV_UDP_REUSEADDR);
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-734-    return uv__udp_set_membership4(handle, &addr4, interface_addr, membership);
iotjs-1.0+715/deps/libtuv/src/unix/udp.c:735:  } else if (uv_ip6_addr(multicast_addr, 0, &addr6) == 0) {
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-736-    err = uv__udp_maybe_deferred_bind(handle, AF_INET6, UV_UDP_REUSEADDR);
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-754-
iotjs-1.0+715/deps/libtuv/src/unix/udp.c:755:  if (uv_ip4_addr(multicast_addr, 0, &addr4) == 0) {
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-756-    err = uv__udp_maybe_deferred_bind(handle, AF_INET, UV_UDP_REUSEADDR);
##############################################
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-918-    }
iotjs-1.0+715/deps/libtuv/src/unix/udp.c:919:  } else if (uv_ip4_addr(interface_addr, 0, addr4) == 0) {
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-920-    /* nothing, address was parsed */
iotjs-1.0+715/deps/libtuv/src/unix/udp.c:921:  } else if (uv_ip6_addr(interface_addr, 0, addr6) == 0) {
iotjs-1.0+715/deps/libtuv/src/unix/udp.c-922-    /* nothing, address was parsed */
##############################################
iotjs-1.0+715/deps/libtuv/src/uv-common.c-134-
iotjs-1.0+715/deps/libtuv/src/uv-common.c:135:int uv_ip4_addr(const char* ip, int port, struct sockaddr_in* addr) {
iotjs-1.0+715/deps/libtuv/src/uv-common.c-136-  memset(addr, 0, sizeof(*addr));
##############################################
iotjs-1.0+715/deps/libtuv/src/uv-common.c-142-
iotjs-1.0+715/deps/libtuv/src/uv-common.c:143:int uv_ip6_addr(const char* ip, int port, struct sockaddr_in6* addr) {
iotjs-1.0+715/deps/libtuv/src/uv-common.c-144-  char address_part[40];
##############################################
iotjs-1.0+715/deps/libtuv/src/win/udp.c-672-  if (interface_addr) {
iotjs-1.0+715/deps/libtuv/src/win/udp.c:673:    if (uv_ip6_addr(interface_addr, 0, &addr6))
iotjs-1.0+715/deps/libtuv/src/win/udp.c-674-      return UV_EINVAL;
##############################################
iotjs-1.0+715/deps/libtuv/src/win/udp.c-711-
iotjs-1.0+715/deps/libtuv/src/win/udp.c:712:  if (uv_ip4_addr(multicast_addr, 0, &addr4) == 0)
iotjs-1.0+715/deps/libtuv/src/win/udp.c-713-    return uv__udp_set_membership4(handle, &addr4, interface_addr, membership);
iotjs-1.0+715/deps/libtuv/src/win/udp.c:714:  else if (uv_ip6_addr(multicast_addr, 0, &addr6) == 0)
iotjs-1.0+715/deps/libtuv/src/win/udp.c-715-    return uv__udp_set_membership6(handle, &addr6, interface_addr, membership);
##############################################
iotjs-1.0+715/deps/libtuv/src/win/udp.c-737-    }
iotjs-1.0+715/deps/libtuv/src/win/udp.c:738:  } else if (uv_ip4_addr(interface_addr, 0, addr4) == 0) {
iotjs-1.0+715/deps/libtuv/src/win/udp.c-739-    /* nothing, address was parsed */
iotjs-1.0+715/deps/libtuv/src/win/udp.c:740:  } else if (uv_ip6_addr(interface_addr, 0, addr6) == 0) {
iotjs-1.0+715/deps/libtuv/src/win/udp.c-741-    /* nothing, address was parsed */
##############################################
iotjs-1.0+715/deps/libtuv/src/win/winsock.c-96-  /* Set implicit binding address used by connectEx */
iotjs-1.0+715/deps/libtuv/src/win/winsock.c:97:  if (uv_ip4_addr("0.0.0.0", 0, &uv_addr_ip4_any_)) {
iotjs-1.0+715/deps/libtuv/src/win/winsock.c-98-    abort();
##############################################
iotjs-1.0+715/deps/libtuv/src/win/winsock.c-101-  /* TODO: IPv6 support in libtuv is incomplete, disable this for now.
iotjs-1.0+715/deps/libtuv/src/win/winsock.c:102:   if (uv_ip6_addr("::", 0, &uv_addr_ip6_any_)) {
iotjs-1.0+715/deps/libtuv/src/win/winsock.c-103-    abort();
##############################################
iotjs-1.0+715/deps/libtuv/test/echo_server.c-214-
iotjs-1.0+715/deps/libtuv/test/echo_server.c:215:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", port, &addr));
iotjs-1.0+715/deps/libtuv/test/echo_server.c-216-
##############################################
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c-157-
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c:158:static int ip4_addr(const char* ip, int port, struct sockaddr_in* addr) {
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c-159-  memset(addr, 0, sizeof(*addr));
##############################################
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c-234-
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c:235:  ip4_addr("0.0.0.0", tuvp_htons(SOCKET_TEST_PORT), &_addr_in);
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c-236-  _sock_server = tuvp_socket(AF_INET, SOCK_STREAM, 0);
##############################################
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c-342-  struct sockaddr_in server_addr;
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c:343:  uv_ip4_addr(HOST_IP_ADDRESS, HOST_ECHO_PORT, &server_addr);
iotjs-1.0+715/deps/libtuv/test/raw/apiemul_socket.c-344-
##############################################
iotjs-1.0+715/deps/libtuv/test/raw/echo_server_raw.c-201-
iotjs-1.0+715/deps/libtuv/test/raw/echo_server_raw.c:202:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", port, &addr));
iotjs-1.0+715/deps/libtuv/test/raw/echo_server_raw.c-203-
##############################################
iotjs-1.0+715/deps/libtuv/test/raw/test_shutdown_eof_raw.c-189-
iotjs-1.0+715/deps/libtuv/test/raw/test_shutdown_eof_raw.c:190:  r = uv_ip4_addr(HOST_IP_ADDRESS, TEST_PORT, &server_addr);
iotjs-1.0+715/deps/libtuv/test/raw/test_shutdown_eof_raw.c-191-  TUV_ASSERT(r == 0);
##############################################
iotjs-1.0+715/deps/libtuv/test/raw/test_tcp_open_raw.c-243-
iotjs-1.0+715/deps/libtuv/test/raw/test_tcp_open_raw.c:244:  TUV_ASSERT(0 == uv_ip4_addr(HOST_IP_ADDRESS, TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/raw/test_tcp_open_raw.c-245-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-127-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:128:    TUV_ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-129-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-447-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:448:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-449-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-471-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:472:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-473-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-634-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:635:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-636-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-697-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:698:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-699-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-709-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:710:  TUV_ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-711-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-738-
iotjs-1.0+715/deps/libtuv/test/test_ipc.c:739:  TUV_ASSERT(0 == uv_ip4_addr("0.0.0.0", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_ipc.c-740-
##############################################
iotjs-1.0+715/deps/libtuv/test/test_shutdown_eof.c-140-
iotjs-1.0+715/deps/libtuv/test/test_shutdown_eof.c:141:  TUV_ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &server_addr));
iotjs-1.0+715/deps/libtuv/test/test_shutdown_eof.c-142-  r = uv_tcp_init(uv_default_loop(), &tcp);
##############################################
iotjs-1.0+715/deps/libtuv/test/test_tcp_open.c-182-
iotjs-1.0+715/deps/libtuv/test/test_tcp_open.c:183:  TUV_ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
iotjs-1.0+715/deps/libtuv/test/test_tcp_open.c-184-
##############################################
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh-88-# Checking the last line
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh:89:actual_signed_off_by_line=`git show -s --format=%B $commit_hash | sed '/^$/d' | tr -d '\015' | tail -n 1`
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh-90-
##############################################
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh-92-then
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh:93: author_name=`git show -s --format=%an $commit_hash`
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh:94: author_email=`git show -s --format=%ae $commit_hash`
iotjs-1.0+715/deps/libtuv/tools/check-signed-off.sh-95- required_signed_off_by_line="libtuv-DCO-1.0-Signed-off-by: $author_name $author_email"
##############################################
iotjs-1.0+715/deps/mbedtls/ChangeLog-1305-     1.3.6.)
iotjs-1.0+715/deps/mbedtls/ChangeLog:1306:   * Fix preprocessor checks for bn_mul PPC asm (found by Barry K. Nathan).
iotjs-1.0+715/deps/mbedtls/ChangeLog-1307-   * Use \n\t rather than semicolons for bn_mul asm, since some assemblers
##############################################
iotjs-1.0+715/deps/mbedtls/ChangeLog-1754-     ssl_write_certificate() (found by TrustInSoft)
iotjs-1.0+715/deps/mbedtls/ChangeLog:1755:   * Fix ASM format in bn_mul.h
iotjs-1.0+715/deps/mbedtls/ChangeLog-1756-   * Potential memory leak in bignum_selftest()
##############################################
iotjs-1.0+715/deps/mbedtls/ChangeLog-1781-     size (found by TrustInSoft)
iotjs-1.0+715/deps/mbedtls/ChangeLog:1782:   * Fix preprocessor checks for bn_mul PPC asm (found by Barry K. Nathan).
iotjs-1.0+715/deps/mbedtls/ChangeLog-1783-   * Use \n\t rather than semicolons for bn_mul asm, since some assemblers
##############################################
iotjs-1.0+715/deps/mbedtls/ChangeLog-2425-     systems (Found by Gernot).
iotjs-1.0+715/deps/mbedtls/ChangeLog:2426:   * Undefining POLARSSL_HAVE_ASM now also handles prevents asm in
iotjs-1.0+715/deps/mbedtls/ChangeLog-2427-     padlock and timing code.
##############################################
iotjs-1.0+715/deps/mbedtls/ChangeLog-2561-    * Added support for Ephemeral Diffie-Hellman key exchange
iotjs-1.0+715/deps/mbedtls/ChangeLog:2562:    * Added multiply asm code for SSE2, ARM, PPC, MIPS and M68K
iotjs-1.0+715/deps/mbedtls/ChangeLog-2563-    * Various improvement to the modular exponentiation code
##############################################
iotjs-1.0+715/deps/mbedtls/Makefile-36-	    then                                \
iotjs-1.0+715/deps/mbedtls/Makefile:37:	        f=$(PREFIX)`basename $$p` ;     \
iotjs-1.0+715/deps/mbedtls/Makefile-38-	        cp $$p $(DESTDIR)/bin/$$f ;     \
##############################################
iotjs-1.0+715/deps/mbedtls/Makefile-50-	    then                                \
iotjs-1.0+715/deps/mbedtls/Makefile:51:	        f=$(PREFIX)`basename $$p` ;     \
iotjs-1.0+715/deps/mbedtls/Makefile-52-	        rm -f $(DESTDIR)/bin/$$f ;      \
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-45-#ifndef asm
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:46:#define asm __asm
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-47-#endif
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-48-
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:49:/* armcc5 --gnu defines __GNUC__ but doesn't support GNU's extended asm */
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-50-#if defined(__GNUC__) && \
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-738-#define MULADDC_INIT                            \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:739:    __asm   mov     esi, s                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:740:    __asm   mov     edi, d                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:741:    __asm   mov     ecx, c                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:742:    __asm   mov     ebx, b
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-743-
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-744-#define MULADDC_CORE                            \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:745:    __asm   lodsd                               \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:746:    __asm   mul     ebx                         \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:747:    __asm   add     eax, ecx                    \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:748:    __asm   adc     edx, 0                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:749:    __asm   add     eax, [edi]                  \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:750:    __asm   adc     edx, 0                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:751:    __asm   mov     ecx, edx                    \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:752:    __asm   stosd
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-753-
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-755-
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:756:#define EMIT __asm _emit
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-757-
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-822-    EMIT 0x0F  EMIT 0x77                        \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:823:    __asm   mov     c, ecx                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:824:    __asm   mov     d, edi                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:825:    __asm   mov     s, esi                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-826-
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-829-#define MULADDC_STOP                            \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:830:    __asm   mov     c, ecx                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:831:    __asm   mov     d, edi                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:832:    __asm   mov     s, esi                      \
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-833-
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-836-
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h:837:#endif /* MBEDTLS_HAVE_ASM */
iotjs-1.0+715/deps/mbedtls/include/mbedtls/bn_mul.h-838-
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/check_config.h-663-    defined(MBEDTLS_HAVE_ASM)
iotjs-1.0+715/deps/mbedtls/include/mbedtls/check_config.h:664:#error "MBEDTLS_HAVE_INT32/MBEDTLS_HAVE_INT64 and MBEDTLS_HAVE_ASM cannot be defined simultaneously"
iotjs-1.0+715/deps/mbedtls/include/mbedtls/check_config.h:665:#endif /* (MBEDTLS_HAVE_INT32 || MBEDTLS_HAVE_INT64) && MBEDTLS_HAVE_ASM */
iotjs-1.0+715/deps/mbedtls/include/mbedtls/check_config.h-666-
##############################################
iotjs-1.0+715/deps/mbedtls/include/mbedtls/compat-1.3.h-226-#if defined MBEDTLS_HAVE_ASM
iotjs-1.0+715/deps/mbedtls/include/mbedtls/compat-1.3.h:227:#define POLARSSL_HAVE_ASM MBEDTLS_HAVE_ASM
iotjs-1.0+715/deps/mbedtls/include/mbedtls/compat-1.3.h-228-#endif
##############################################
iotjs-1.0+715/deps/mbedtls/library/aesni.c-39-#ifndef asm
iotjs-1.0+715/deps/mbedtls/library/aesni.c:40:#define asm __asm
iotjs-1.0+715/deps/mbedtls/library/aesni.c-41-#endif
##############################################
iotjs-1.0+715/deps/mbedtls/library/padlock.c-40-#ifndef asm
iotjs-1.0+715/deps/mbedtls/library/padlock.c:41:#define asm __asm
iotjs-1.0+715/deps/mbedtls/library/padlock.c-42-#endif
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-46-#ifndef asm
iotjs-1.0+715/deps/mbedtls/library/timing.c:47:#define asm __asm
iotjs-1.0+715/deps/mbedtls/library/timing.c-48-#endif
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-82-    unsigned long tsc;
iotjs-1.0+715/deps/mbedtls/library/timing.c:83:    __asm   rdtsc
iotjs-1.0+715/deps/mbedtls/library/timing.c:84:    __asm   mov  [tsc], eax
iotjs-1.0+715/deps/mbedtls/library/timing.c-85-    return( tsc );
iotjs-1.0+715/deps/mbedtls/library/timing.c-86-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:87:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-88-          ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-99-    unsigned long lo, hi;
iotjs-1.0+715/deps/mbedtls/library/timing.c:100:    asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-101-    return( lo );
iotjs-1.0+715/deps/mbedtls/library/timing.c-102-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:103:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-104-          __GNUC__ && __i386__ */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-113-    unsigned long lo, hi;
iotjs-1.0+715/deps/mbedtls/library/timing.c:114:    asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-115-    return( lo | ( hi << 32 ) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-116-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:117:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-118-          __GNUC__ && ( __amd64__ || __x86_64__ ) */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-130-    {
iotjs-1.0+715/deps/mbedtls/library/timing.c:131:        asm volatile( "mftbu %0" : "=r" (tbu0) );
iotjs-1.0+715/deps/mbedtls/library/timing.c:132:        asm volatile( "mftb  %0" : "=r" (tbl ) );
iotjs-1.0+715/deps/mbedtls/library/timing.c:133:        asm volatile( "mftbu %0" : "=r" (tbu1) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-134-    }
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-138-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:139:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-140-          __GNUC__ && ( __powerpc__ || __ppc__ ) */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-152-    unsigned long tick;
iotjs-1.0+715/deps/mbedtls/library/timing.c:153:    asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-154-    return( tick );
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-156-#endif /* __OpenBSD__ */
iotjs-1.0+715/deps/mbedtls/library/timing.c:157:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-158-          __GNUC__ && __sparc64__ */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-167-    unsigned long tick;
iotjs-1.0+715/deps/mbedtls/library/timing.c:168:    asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
iotjs-1.0+715/deps/mbedtls/library/timing.c:169:    asm volatile( "mov   %%g1, %0" : "=r" (tick) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-170-    return( tick );
iotjs-1.0+715/deps/mbedtls/library/timing.c-171-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:172:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-173-          __GNUC__ && __sparc__ && !__sparc64__ */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-182-    unsigned long cc;
iotjs-1.0+715/deps/mbedtls/library/timing.c:183:    asm volatile( "rpcc %0" : "=r" (cc) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-184-    return( cc & 0xFFFFFFFF );
iotjs-1.0+715/deps/mbedtls/library/timing.c-185-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:186:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-187-          __GNUC__ && __alpha__ */
##############################################
iotjs-1.0+715/deps/mbedtls/library/timing.c-196-    unsigned long itc;
iotjs-1.0+715/deps/mbedtls/library/timing.c:197:    asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
iotjs-1.0+715/deps/mbedtls/library/timing.c-198-    return( itc );
iotjs-1.0+715/deps/mbedtls/library/timing.c-199-}
iotjs-1.0+715/deps/mbedtls/library/timing.c:200:#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
iotjs-1.0+715/deps/mbedtls/library/timing.c-201-          __GNUC__ && __ia64__ */
##############################################
iotjs-1.0+715/deps/mbedtls/library/version_features.c-37-    "MBEDTLS_HAVE_ASM",
iotjs-1.0+715/deps/mbedtls/library/version_features.c:38:#endif /* MBEDTLS_HAVE_ASM */
iotjs-1.0+715/deps/mbedtls/library/version_features.c-39-#if defined(MBEDTLS_NO_UDBL_DIVISION)
##############################################
iotjs-1.0+715/deps/mbedtls/scripts/data_files/rename-1.3-2.0.txt-667-POLARSSL_HAVEGE_H MBEDTLS_HAVEGE_H
iotjs-1.0+715/deps/mbedtls/scripts/data_files/rename-1.3-2.0.txt:668:POLARSSL_HAVE_ASM MBEDTLS_HAVE_ASM
iotjs-1.0+715/deps/mbedtls/scripts/data_files/rename-1.3-2.0.txt-669-POLARSSL_HAVE_INT16 MBEDTLS_HAVE_INT16
##############################################
iotjs-1.0+715/deps/mbedtls/scripts/generate_visualc_files.pl-105-sub get_app_list {
iotjs-1.0+715/deps/mbedtls/scripts/generate_visualc_files.pl:106:    my $app_list = `cd $programs_dir && make list`;
iotjs-1.0+715/deps/mbedtls/scripts/generate_visualc_files.pl-107-    die "make list failed: $!\n" if $?;
##############################################
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh-28-
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh:29:    if ! `type "$BIN" > /dev/null 2>&1`; then
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh-30-        echo "* $FAIL_MSG"
##############################################
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh-33-
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh:34:    BIN=`which "$BIN"`
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh:35:    VERSION_STR=`$BIN $ARGS 2>&1`
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh-36-
##############################################
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh-40-        shift
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh:41:        VERSION_STR=`echo "$VERSION_STR" | $FILTER`
iotjs-1.0+715/deps/mbedtls/scripts/output_env.sh-42-    done
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-205-    # OpenSSL 1.0.1h doesn't support DTLS 1.2
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:206:    if [ `minor_ver "$MODE"` -ge 3 ] && is_dtls "$MODE"; then
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-207-        O_CIPHERS=""
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-233-        "ECDSA")
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:234:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-235-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-257-            fi
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:258:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-259-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-329-                "
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:330:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-331-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-353-            fi
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:354:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-355-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-429-        "ECDSA")
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:430:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-431-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-446-            fi
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:447:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-448-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-484-        "ECDSA")
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:485:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-486-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-502-        "RSA")
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:503:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-504-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-511-            fi
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:512:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-513-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-557-                "
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:558:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-559-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-580-            fi
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:581:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-582-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-668-        "ECDSA")
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:669:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-670-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-675-            fi
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:676:            if [ `minor_ver "$MODE"` -ge 3 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-677-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-710-                "
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:711:            if [ `minor_ver "$MODE"` -gt 0 ]
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-712-            then
##############################################
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-974-    VERIF=$(echo $VERIFY | tr '[:upper:]' '[:lower:]')
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:975:    TITLE="`echo $1 | head -c1`->`echo $SERVER_NAME | head -c1`"
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-976-    TITLE="$TITLE $MODE,$VERIF $2"
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-977-    printf "$TITLE "
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:978:    LEN=$(( 72 - `echo "$TITLE" | wc -c` ))
iotjs-1.0+715/deps/mbedtls/tests/compat.sh:979:    for i in `seq 1 $LEN`; do printf '.'; done; printf ' '
iotjs-1.0+715/deps/mbedtls/tests/compat.sh-980-
##############################################
iotjs-1.0+715/deps/mbedtls/tests/git-scripts/pre-push.sh-38-    echo "running '$TEST'"
iotjs-1.0+715/deps/mbedtls/tests/git-scripts/pre-push.sh:39:    if ! `$TEST > /dev/null 2>&1`; then
iotjs-1.0+715/deps/mbedtls/tests/git-scripts/pre-push.sh-40-        echo "test '$TEST' failed"
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/all.sh-207-    for TOOL in "$@"; do
iotjs-1.0+715/deps/mbedtls/tests/scripts/all.sh:208:        if ! `hash "$TOOL" >/dev/null 2>&1`; then
iotjs-1.0+715/deps/mbedtls/tests/scripts/all.sh-209-            err_msg "$TOOL not found!"
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-30-my $config_h = 'include/mbedtls/config.h';
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl:31:my @curves = split( /\s+/, `sed -n -e '$sed_cmd' $config_h` );
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-32-
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl:33:system( "cp $config_h $config_h.bak" ) and die;
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-34-sub abort {
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl:35:    system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-36-    die $_[0];
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-39-for my $curve (@curves) {
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl:40:    system( "cp $config_h.bak $config_h" ) and die "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-41-    # depends on a specific curve. Also, ignore error if it wasn't enabled
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-48-
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl:49:    system( "scripts/config.pl unset $curve" )
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-50-        and abort "Failed to disable $curve\n";
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-58-
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl:59:system( "mv $config_h.bak $config_h" ) and die "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/curves.pl-60-system( "make clean" ) and die;
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-13-my $config_h = 'include/mbedtls/config.h';
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl:14:my @kexes = split( /\s+/, `sed -n -e '$sed_cmd' $config_h` );
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-15-
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl:16:system( "cp $config_h $config_h.bak" ) and die;
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-17-sub abort {
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl:18:    system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-19-    die $_[0];
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-22-for my $kex (@kexes) {
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl:23:    system( "cp $config_h.bak $config_h" ) and die "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-24-    system( "make clean" ) and die;
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-33-        next if $k eq $kex;
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl:34:        system( "scripts/config.pl unset $k" )
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-35-            and abort "Failed to disable $k\n";
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-40-
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl:41:system( "mv $config_h.bak $config_h" ) and die "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/key-exchanges.pl-42-system( "make clean" ) and die;
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/run-test-suites.pl-53-    print "$suite ", "." x ( 72 - length($suite) - 2 - 4 ), " ";
iotjs-1.0+715/deps/mbedtls/tests/scripts/run-test-suites.pl:54:    my $result = `$prefix$suite`;
iotjs-1.0+715/deps/mbedtls/tests/scripts/run-test-suites.pl-55-
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-52-
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:53:system( "cp $config_h $config_h.bak" ) and die;
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-54-sub abort {
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:55:    system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-56-    die $_[0];
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-59-while( my ($conf, $data) = each %configs ) {
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:60:    system( "cp $config_h.bak $config_h" ) and die;
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-61-    system( "make clean" ) and die;
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-66-
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:67:    system( "cp configs/$conf $config_h" )
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-68-        and abort "Failed to activate $conf\n";
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-76-        print "\nrunning compat.sh $compat\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:77:        system( "tests/compat.sh $compat" )
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-78-            and abort "Failed compat.sh: $conf\n";
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-88-        print "\nrunning ssl-opt.sh $opt\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:89:        system( "tests/ssl-opt.sh $opt" )
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-90-            and abort "Failed ssl-opt.sh: $conf\n";
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-97-
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl:98:system( "mv $config_h.bak $config_h" ) and warn "$config_h not restored\n";
iotjs-1.0+715/deps/mbedtls/tests/scripts/test-ref-configs.pl-99-system( "make clean" );
##############################################
iotjs-1.0+715/deps/mbedtls/tests/scripts/yotta-build.sh-17-    for TOOL in "$@"; do
iotjs-1.0+715/deps/mbedtls/tests/scripts/yotta-build.sh:18:        if ! `hash "$TOOL" >/dev/null 2>&1`; then
iotjs-1.0+715/deps/mbedtls/tests/scripts/yotta-build.sh-19-            echo "$TOOL not found!" >&2
##############################################
iotjs-1.0+715/deps/mbedtls/tests/ssl-opt.sh-215-    printf "$LINE "
iotjs-1.0+715/deps/mbedtls/tests/ssl-opt.sh:216:    LEN=$(( 72 - `echo "$LINE" | wc -c` ))
iotjs-1.0+715/deps/mbedtls/tests/ssl-opt.sh:217:    for i in `seq 1 $LEN`; do printf '.'; done
iotjs-1.0+715/deps/mbedtls/tests/ssl-opt.sh-218-    printf ' '
##############################################
iotjs-1.0+715/docs/api/IoT.js-API-Module.md-33-2. `iotjs_modules` folder under current working directory.
iotjs-1.0+715/docs/api/IoT.js-API-Module.md:34:3. `$HOME/iotjs_modules`
iotjs-1.0+715/docs/api/IoT.js-API-Module.md:35:4. `$IOTJS_PATH/iotjs_modules`
iotjs-1.0+715/docs/api/IoT.js-API-Module.md:36:5. `$IOTJS_EXTRA_MODULE_PATH`
iotjs-1.0+715/docs/api/IoT.js-API-Module.md-37-
##############################################
iotjs-1.0+715/docs/devs/Writing-New-Module.md-410-  Please use this template:
iotjs-1.0+715/docs/devs/Writing-New-Module.md:411:`add_subdirectory(${MODULE_DIR}/lib/ ${MODULE_BASE_BINARY_DIR}/${MODULE_NAME})`
iotjs-1.0+715/docs/devs/Writing-New-Module.md-412-  where `lib/` is a subdirectory of the module directory.
##############################################
iotjs-1.0+715/src/js/ble_hci_socket_hci.js-155-      this.readLeHostSupported();
iotjs-1.0+715/src/js/ble_hci_socket_hci.js:156:      this.readBdAddr();
iotjs-1.0+715/src/js/ble_hci_socket_hci.js-157-    } else {
##############################################
iotjs-1.0+715/src/js/ble_hci_socket_hci.js-539-    this.readLeHostSupported();
iotjs-1.0+715/src/js/ble_hci_socket_hci.js:540:    this.readBdAddr();
iotjs-1.0+715/src/js/ble_hci_socket_hci.js-541-  } else if (cmd === READ_LE_HOST_SUPPORTED_CMD) {
##############################################
iotjs-1.0+715/src/modules/iotjs_module_tcp.c-100-  sockaddr_in addr;
iotjs-1.0+715/src/modules/iotjs_module_tcp.c:101:  int err = uv_ip4_addr(iotjs_string_data(&address), port, &addr);
iotjs-1.0+715/src/modules/iotjs_module_tcp.c-102-
##############################################
iotjs-1.0+715/src/modules/iotjs_module_tcp.c-131-  sockaddr_in addr;
iotjs-1.0+715/src/modules/iotjs_module_tcp.c:132:  int err = uv_ip4_addr(iotjs_string_data(&address), port, &addr);
iotjs-1.0+715/src/modules/iotjs_module_tcp.c-133-
##############################################
iotjs-1.0+715/src/modules/iotjs_module_udp.c-64-  int err =
iotjs-1.0+715/src/modules/iotjs_module_udp.c:65:      uv_ip4_addr(iotjs_string_data(&address), port, (sockaddr_in*)(&addr));
iotjs-1.0+715/src/modules/iotjs_module_udp.c-66-
##############################################
iotjs-1.0+715/src/modules/iotjs_module_udp.c-213-  int err =
iotjs-1.0+715/src/modules/iotjs_module_udp.c:214:      uv_ip4_addr(iotjs_string_data(&address), port, (sockaddr_in*)(&addr));
iotjs-1.0+715/src/modules/iotjs_module_udp.c-215-
##############################################
iotjs-1.0+715/test/node/common.js-213- * Check that when running a test with
iotjs-1.0+715/test/node/common.js:214: * `$node --abort-on-uncaught-exception $file child`
iotjs-1.0+715/test/node/common.js-215- * the process aborts.
##############################################
iotjs-1.0+715/tools/check_signed_off.sh-88-# Checking the last line
iotjs-1.0+715/tools/check_signed_off.sh:89:actual_signed_off_by_line=`git show -s --format=%B $commit_hash | sed '/^$/d' | tr -d '\015' | tail -n 1`
iotjs-1.0+715/tools/check_signed_off.sh-90-
##############################################
iotjs-1.0+715/tools/check_signed_off.sh-92-then
iotjs-1.0+715/tools/check_signed_off.sh:93: author_name=`git show -s --format=%an $commit_hash`
iotjs-1.0+715/tools/check_signed_off.sh:94: author_email=`git show -s --format=%ae $commit_hash`
iotjs-1.0+715/tools/check_signed_off.sh-95- required_signed_off_by_line="IoT.js-DCO-1.0-Signed-off-by: $author_name $author_email"
##############################################
iotjs-1.0+715/tools/mem_stats.sh-113-
iotjs-1.0+715/tools/mem_stats.sh:114:  cd `dirname $bench_canon`
iotjs-1.0+715/tools/mem_stats.sh-115-
##############################################
iotjs-1.0+715/tools/module_templates/shared_module_template/js/test.js-16-var console = require("console");
iotjs-1.0+715/tools/module_templates/shared_module_template/js/test.js:17:var demo_module = require("build/lib/$MODULE_NAME$");
iotjs-1.0+715/tools/module_templates/shared_module_template/js/test.js-18-
##############################################
iotjs-1.0+715/.pc/0002-build-Install-headers-to-system.patch/cmake/iotjs.cmake-20-
iotjs-1.0+715/.pc/0002-build-Install-headers-to-system.patch/cmake/iotjs.cmake:21:include(${CMAKE_CURRENT_LIST_DIR}/JSONParser.cmake)
iotjs-1.0+715/.pc/0002-build-Install-headers-to-system.patch/cmake/iotjs.cmake-22-
##############################################
iotjs-1.0+715/.pc/0002-build-Install-headers-to-system.patch/cmake/iotjs.cmake-407-  # - MODULE_LIBS - list of libraries to use during linking (set this)
iotjs-1.0+715/.pc/0002-build-Install-headers-to-system.patch/cmake/iotjs.cmake:408:  include(${MODULE_EXTRA_CMAKE_FILE})
iotjs-1.0+715/.pc/0002-build-Install-headers-to-system.patch/cmake/iotjs.cmake-409-
##############################################
iotjs-1.0+715/.pc/0001-iotjs-Install-binaries-to-system-1134.patch/cmake/iotjs.cmake-20-
iotjs-1.0+715/.pc/0001-iotjs-Install-binaries-to-system-1134.patch/cmake/iotjs.cmake:21:include(${CMAKE_CURRENT_LIST_DIR}/JSONParser.cmake)
iotjs-1.0+715/.pc/0001-iotjs-Install-binaries-to-system-1134.patch/cmake/iotjs.cmake-22-
##############################################
iotjs-1.0+715/.pc/0001-iotjs-Install-binaries-to-system-1134.patch/cmake/iotjs.cmake-407-  # - MODULE_LIBS - list of libraries to use during linking (set this)
iotjs-1.0+715/.pc/0001-iotjs-Install-binaries-to-system-1134.patch/cmake/iotjs.cmake:408:  include(${MODULE_EXTRA_CMAKE_FILE})
iotjs-1.0+715/.pc/0001-iotjs-Install-binaries-to-system-1134.patch/cmake/iotjs.cmake-409-
##############################################
iotjs-1.0+715/.pc/0004-build-Disable-error-on-warning.patch/cmake/iotjs.cmake-20-
iotjs-1.0+715/.pc/0004-build-Disable-error-on-warning.patch/cmake/iotjs.cmake:21:include(${CMAKE_CURRENT_LIST_DIR}/JSONParser.cmake)
iotjs-1.0+715/.pc/0004-build-Disable-error-on-warning.patch/cmake/iotjs.cmake-22-
##############################################
iotjs-1.0+715/.pc/0004-build-Disable-error-on-warning.patch/cmake/iotjs.cmake-407-  # - MODULE_LIBS - list of libraries to use during linking (set this)
iotjs-1.0+715/.pc/0004-build-Disable-error-on-warning.patch/cmake/iotjs.cmake:408:  include(${MODULE_EXTRA_CMAKE_FILE})
iotjs-1.0+715/.pc/0004-build-Disable-error-on-warning.patch/cmake/iotjs.cmake-409-