/bionic/tests/libs/ |
pthread_atfork.cpp | 19 extern "C" int proxy_pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { 20 return pthread_atfork(prepare, parent, child);
|
/external/elfutils/tests/ |
run-backtrace-demangle.sh | 25 child=testfile-backtrace-demangle 26 testfiles $child{,.core} 27 tempfiles $child.{bt,err} 39 testrun ${abs_top_builddir}/src/stack -n 2 -e $child --core $child.core >$child.bt 2>$child.err || exitcode=$? 40 cat $child.{bt,err} 47 if test $exitcode != 1 || ! grep "shown max number of frames" $child.err; then 51 if ! grep -w f $child.bt; the [all...] |
run-backtrace-native-core.sh | 20 check_native_core backtrace-child
|
run-backtrace-native.sh | 20 check_native backtrace-child
|
run-backtrace-native-biarch.sh | 25 check_native backtrace-child-biarch
|
run-backtrace-native-core-biarch.sh | 25 check_native_core backtrace-child-biarch
|
/external/boringssl/src/crypto/bn_extra/ |
bn_asn1.c | 22 CBS child; local 23 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_INTEGER) || 24 CBS_len(&child) == 0) { 29 if (CBS_data(&child)[0] & 0x80) { 35 if (CBS_data(&child)[0] == 0x00 && 36 CBS_len(&child) > 1 && 37 !(CBS_data(&child)[1] & 0x80)) { 42 return BN_bin2bn(CBS_data(&child), CBS_len(&child), ret) != NULL; 52 CBB child; local [all...] |
/external/autotest/frontend/client/src/autotest/common/ |
DomUtils.java | 7 Element child = elem.getFirstChildElement(); local 8 while (child != null) { 9 Element nextChild = child.getNextSiblingElement(); 10 elem.removeChild(child); 11 child = nextChild;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
Parent1.java | 20 private Child1 child; field in class:Parent1 31 return child; 34 public void setChild(Child1 child) { 35 this.child = child;
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemUnknown.java | 58 for (ElemTemplateElement child = m_firstChild; child != null; 59 child = child.m_nextSibling) 61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK) 65 transformer.pushElemTemplateElement(child); 66 ((ElemFallback) child).executeFallback(transformer); 78 * Return true if this extension element has a <xsl:fallback> child element. 80 * @return true if this extension element has a <xsl:fallback> child element. 84 for (ElemTemplateElement child = m_firstChild; child != null [all...] |
/external/ltp/testcases/kernel/fs/fs_bind/bind/ |
00_Descriptions.txt | 25 test01 - shared child to shared parent. 26 test02 - shared child to private parent. 27 test03 - shared child to slave parent. 28 test04 - shared child to unclonable parent. 29 test05 - private child to shared parent. 30 test06 - private child to private parent. 31 test07 - private child to slave parent. 33 test08 - private child to uncloneable parent. 34 test09 - slave child to shared parent. 35 test10 - slave child to private parent [all...] |
/external/grpc-grpc/src/core/lib/security/util/ |
json_util.cc | 30 grpc_json* child; local 31 for (child = json->child; child != nullptr; child = child->next) { 32 if (child->key == nullptr) { 36 if (strcmp(child->key, prop_name) == 0) break; 38 if (child == nullptr || child->type != GRPC_JSON_STRING) [all...] |
/external/libcxxabi/test/ |
inherited_exception.pass.cpp | 30 // Clang emits warnings about exceptions of type 'Child' being caught by 47 struct Child : public Base, public Base2 { 52 Child child; local 53 child.b1 = 10; 54 child.b2 = 11; 55 child.c = 12; 56 throw child; 60 Child child; local 68 static Child child; local [all...] |
/external/ltp/testcases/misc/math/float/exp_log/ |
genexp_log.c | 69 pid_t child; local 80 child = create_file(funct, 0); 81 waitpid(child, NULL, 0); 84 child = create_file(funct, 0); 85 waitpid(child, NULL, 0); 88 child = create_file(funct, 0); 89 waitpid(child, NULL, 0); 92 child = create_file(funct, 0); 93 waitpid(child, NULL, 0); 96 child = create_file(funct, 0) [all...] |
/external/ltp/testcases/kernel/fs/fs_bind/rbind/ |
00_Descriptions.txt | 26 test01 - shared child to shared parent. 27 test02 - shared child to private parent. 28 test03 - shared child to slave parent. 29 test04 - shared child to unclonable parent. 30 test05 - private child to shared parent. 31 test06 - private child to private parent. 32 test07 - private child to slave parent. 33 test08 - private child to uncloneable parent. 34 test09 - slave child to shared parent. 35 test10 - slave child to private parent [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/ |
ChildTextElement.java | 28 * Represent the position of a child node in the NodeText of its parent. 31 private final Node child; field in class:ChildTextElement 33 ChildTextElement(Node child) { 34 this.child = child; 38 return LexicalPreservingPrinter.print(child); 42 return child; 52 return node == child; 56 return LexicalPreservingPrinter.getOrCreateNodeText(child); 66 return child.equals(that.child) [all...] |
/external/yapf/yapf/yapflib/ |
subtype_assigner.py | 67 for child in node.children: 68 self.Visit(child) 73 for child in node.children: 74 if pytree_utils.NodeName(child) == 'comp_for': 76 _AppendFirstLeafTokenSubtype(child, 78 elif pytree_utils.NodeName(child) in ('COLON', 'DOUBLESTAR'): 84 for child in node.children: 85 if pytree_utils.NodeName(child) == 'DOUBLESTAR': 86 _AppendFirstLeafTokenSubtype(child, 90 _InsertPseudoParentheses(child) [all...] |
/external/grpc-grpc/src/core/lib/json/ |
json.cc | 38 while (json->child) { 39 grpc_json_destroy(json->child); 49 json->parent->child = json->next; 59 grpc_json* grpc_json_link_child(grpc_json* parent, grpc_json* child, 61 // link child up to parent 62 child->parent = parent; 63 // first child case. 64 if (parent->child == nullptr) { 66 parent->child = child; 83 grpc_json* child = grpc_json_create(type); local [all...] |
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/ |
4-1.c | 19 * The parent process ID of the child is the process ID of the parent (caller of fork()) 22 * -> create a child 50 pid_t child, ctl; local 56 /* Create the child */ 57 child = fork(); 58 if (child == -1) { 62 /* child */ 63 if (child == 0) { 74 /* Parent joins the child */ 75 ctl = waitpid(child, &status, 0) [all...] |
3-1.c | 22 * -> create a child; then terminate this child. 52 pid_t child, ctl; local 57 /* Create the child */ 58 child = fork(); 59 if (child == -1) { 63 /* child */ 64 if (child == 0) { 65 /* The child stops immediatly */ 69 /* Parent joins the child */ [all...] |
/external/ltp/testcases/misc/math/float/power/ |
genpower.c | 69 pid_t child; local 80 child = create_file(funct, 0); 81 waitpid(child, NULL, 0); 84 child = create_file(funct, 0); 85 waitpid(child, NULL, 0); 88 child = create_file(funct, 0); 89 waitpid(child, NULL, 0); 92 child = create_file(funct, 0); 93 waitpid(child, NULL, 0); 96 child = create_file(funct, 0) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
X86DisassemblerTables.cpp | 73 /// @param child - The class that may be the subset 75 /// @return - True if child is a subset of parent, false otherwise. 76 static inline bool inheritsFrom(InstructionContext child, 80 if (child == parent) 85 return(inheritsFrom(child, IC_64BIT, AdSize64) || 86 (noPrefix && inheritsFrom(child, IC_OPSIZE, noPrefix)) || 87 inheritsFrom(child, IC_ADSIZE) || 88 (noPrefix && inheritsFrom(child, IC_XD, noPrefix)) || 89 (noPrefix && inheritsFrom(child, IC_XS, noPrefix))); 91 return(inheritsFrom(child, IC_64BIT_REXW) | [all...] |
/external/clang/test/CodeGenCXX/ |
microsoft-abi-multiple-nonvirtual-inheritance.cpp | 21 void call_left_no_override(ChildNoOverride *child) { 23 // CHECK: %[[CHILD:.*]] = load %struct.ChildNoOverride 25 child->left(); 27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left* 50 void call_left_override(ChildOverride *child) { 52 // CHECK: %[[CHILD:.*]] = load %struct.ChildOverride 54 child->left(); 55 // CHECK: %[[VFPTR:.*]] = bitcast %struct.ChildOverride* %[[CHILD]] to void (%struct.ChildOverride*)*** 60 // CHECK: call x86_thiscallcc void %[[VFUN_VALUE]](%struct.ChildOverride* %[[CHILD]]) 64 void call_right_no_override(ChildNoOverride *child) { [all...] |
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/ |
TreeVisitor.java | 28 for (Node child : node.getChildrenNodes()){ 29 visitDepthFirst(child);
|
/bionic/libc/arch-common/bionic/ |
pthread_atfork.h | 25 extern int __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void), void* dso); 32 int pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) { 33 return __register_atfork(prepare, parent, child, &__dso_handle);
|