HomeSort by relevance Sort by last modified time
    Searched refs:child (Results 501 - 525 of 1841) sorted by null

<<21222324252627282930>>

  /external/toybox/toys/net/
netcat.c 44 The command line after -l or -L is executed (as a child process) to handle
77 pid_t child; local
138 child = 0;
150 // child = forkpty(&fdout, NULL, NULL, NULL);
155 if (toys.optflags&FLAG_L) NOEXIT(child = XVFORK());
156 if (child) {
  /external/u-boot/include/linux/
rbtree_augmented.h 117 struct rb_node *child = node->rb_right, *tmp = node->rb_left; local
123 * Case 1: node to erase has no more than 1 child (easy!)
125 * Note that if there is one child it must be red due to 5)
131 __rb_change_child(node, child, parent, root);
132 if (child) {
133 child->__rb_parent_color = pc;
138 } else if (!child) {
139 /* Still case 1, but this time the child is node->rb_left */
146 struct rb_node *successor = child, *child2;
147 tmp = child->rb_left
    [all...]
  /external/wpa_supplicant_8/src/utils/
json.h 31 struct json_token *parent, *child, *sibling; member in struct:json_token
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPIteratorImpl.java 224 /** the iterator for each child */
340 // create sub iterator for every child,
341 // if its the first child visited or the former child is finished
344 XMPNode child = (XMPNode) iterator.next(); local
346 subIterator = new NodeIterator(child, path, index);
567 XMPNode child = (XMPNode) childrenIterator.next();
571 if (child.getOptions().isSchemaNode())
573 setBaseNS(child.getName());
575 else if (child.getParent() != null
    [all...]
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 71 const pid_t child = fork(); local
72 if (child == 0) {
87 context.tid = child;
88 ASSERT_TRUE(WriteMinidump(templ.c_str(), child, &context, sizeof(context)));
100 const pid_t child = fork(); local
101 if (child == 0) {
117 context.tid = child;
118 ASSERT_TRUE(WriteMinidump(fd, child, &context, sizeof(context)));
165 const pid_t child = fork(); local
166 if (child == 0)
286 const pid_t child = fork(); local
452 const pid_t child = fork(); local
510 const pid_t child = fork(); local
    [all...]
  /external/u-boot/scripts/kconfig/
nconf.c 739 struct menu *child; local
800 for (child = menu->list; child; child = child->next) {
801 if (menu_is_visible(child) && child->sym == def_sym)
802 def_menu = child;
916 for (child = menu->list; child; child = child->next
1237 struct menu *child = NULL; local
    [all...]
  /external/toybox/toys/pending/
fsck.c 62 static struct child_list *c_list = NULL; //fsck.type child list.
66 struct child_list *child; local
68 for (child = c_list; child; child = child->next)
69 kill(child->pid, SIGTERM);
190 struct child_list *child; local
231 if (!pid) xexec(args); //child, executes fsck.type
234 child = xzalloc(sizeof(struct child_list)); //Parent, add to child list
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 90 // walk the tree and emit create and add child events
97 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
104 object child = adaptor.GetChild( t, i );
105 SimulateTreeConstruction( child );
106 dbg.AddChild( t, child );
150 public virtual void AddChild( object t, object child )
152 if ( t == null || child == null )
156 adaptor.AddChild( t, child );
157 dbg.AddChild( t, child );
172 public virtual void AddChild( object t, IToken child )
    [all...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugInfoEntry.cpp 50 const DWARFDebugInfoEntryMinimal *child = getFirstChild(); local
51 if (recurseDepth > 0 && child) {
52 while (child) {
53 child->dump(OS, cu, recurseDepth-1, indent+2);
54 child = child->getSibling();
438 const DWARFDebugInfoEntryMinimal *child = getFirstChild(); local
439 while (child) {
440 child->buildAddressRangeTable(cu, debug_aranges);
441 child = child->getSibling()
    [all...]
  /external/libxml2/
xmlschemas.c 6556 xmlNodePtr child = NULL; local
6676 xmlNodePtr child = NULL; local
6936 xmlNodePtr child = NULL; local
7029 xmlNodePtr child = NULL; local
7076 xmlNodePtr child = NULL; local
7150 xmlNodePtr child = NULL; local
7540 xmlNodePtr child = NULL; local
7692 xmlNodePtr child = NULL; local
7824 xmlNodePtr child = NULL; local
8255 xmlNodePtr child = NULL; local
8353 xmlNodePtr child = NULL; local
8502 xmlNodePtr child = NULL; local
8898 xmlNodePtr child = NULL; local
9067 xmlNodePtr child = NULL; local
9178 xmlNodePtr child = NULL; local
9393 xmlNodePtr child = NULL; local
9495 xmlNodePtr child = NULL; local
9791 xmlNodePtr child; local
10750 xmlNodePtr child; local
10995 xmlNodePtr child = NULL; local
11258 xmlNodePtr child = NULL; local
11522 xmlNodePtr child = NULL; local
11826 xmlNodePtr child = NULL; local
11962 xmlNodePtr child = NULL; local
12052 xmlNodePtr child = NULL; local
12146 xmlNodePtr child = NULL; local
    [all...]
  /external/f2fs-tools/fsck/
fsck.c 520 u32 *blk_cnt, struct child_info *child)
534 fsck_chk_inode_blk(sbi, nid, ftype, node_blk, blk_cnt, &ni, child);
542 blk_cnt, child, &ni);
548 blk_cnt, child);
554 blk_cnt, child);
575 static void check_extent_info(struct child_info *child,
578 struct extent_info *ei = &child->ei;
579 u32 pgofs = child->pgofs;
585 if (child->state & FSCK_UNMATCHED_EXTENT)
588 if ((child->state & FSCK_INLINE_INODE) && ei->len
657 struct child_info child; local
    [all...]
  /external/ImageMagick/MagickCore/
xml-tree.c 95 *child;
155 % AddChildToXMLTree() adds a child tag at an offset relative to the start of
156 % the parent tag's character content. Return the child tag.
176 *child;
180 child=(XMLTreeInfo *) AcquireMagickMemory(sizeof(*child));
181 if (child == (XMLTreeInfo *) NULL)
183 (void) memset(child,0,sizeof(*child));
184 child->tag=ConstantString(tag)
92 *child; member in struct:_XMLTreeInfo
171 *child; local
233 *child, local
466 *child, local
899 *child; local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
RegexLookup.java 349 RTNode child = _children.get(i); local
350 String childFinderPattern = child._finder.toString();
353 } else if (child._rank == -1) {
357 //check if child has the same Finder as node to insert, then replace it
358 if (node._finder.equals(child._finder)) {
359 child._finder = node._finder;
360 child._val = node._val;
361 if (child._rank == -1) {
362 child._rank = node._rank;
369 //check if child is the parent of nod
    [all...]
  /external/linux-kselftest/tools/testing/selftests/cgroup/
test_memcontrol.c 29 char *parent, *child, *parent2, *child2; local
35 child = cg_name(root, "memcg_test_0/memcg_test_1");
36 if (!parent || !child)
45 if (cg_create(child))
48 if (cg_read_strstr(child, "cgroup.controllers", "memory"))
72 cg_destroy(child);
75 free(child);
1006 char *parent, *child; local
1009 child = cg_name(root, "memcg_test_0/memcg_test_1");
1011 if (!parent || !child)
1068 char *parent, *child; local
    [all...]
  /bionic/libc/arch-x86_64/bionic/
__bionic_clone.S 33 # Copy 'fn' and 'arg' onto the child stack.
65 # We're in the child now, so call __start_thread
66 # with the arguments from the child stack moved into
  /cts/suite/audio_quality/lib/include/task/
TaskGeneric.h 74 * default implementation for adding child action
75 * Ownership of the child is passed to this instance, and child will be destroyed in parent's
79 virtual bool addChild(TaskGeneric* child);
95 bool forEachChild(bool (*runForEachChild)(TaskGeneric* child, void* data), void* data);
98 /// used by child instance to register allowed attributes
  /cts/tools/utils/cts/
tools.py 56 child = doc.createElement('TestSuite')
57 child.setAttribute('name', suite_name)
58 parent.appendChild(child)
59 # recurse into child suites
60 suite.WriteDescription(doc, child)
62 child = doc.createElement('TestCase')
63 child.setAttribute('name', case_name)
64 parent.appendChild(child)
68 child.appendChild(test)
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
DividerItemDecoration.java 42 View child = parent.getChildAt(i); local
44 int top = child.getBottom();
  /developers/samples/android/deprecated/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
DividerItemDecoration.java 42 View child = parent.getChildAt(i); local
44 int top = child.getBottom();
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
Node.java 73 other.mChildren.forEach(child -> addChild(new Node(child)));
77 * Adds a child to this Node's children.
78 * @param child The child node to add.
81 Node addChild(Node child) {
82 mChildren.add(child);
87 * Adds a child to the beginning of the list of this Node's children.
88 * @param child The child node to add
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 317 * Perform a query if needed, and call transformNode for each child.
360 int child; local
362 while (DTM.NULL != (child = sourceNodes.nextNode()))
364 currentNodes.setTop(child);
365 currentExpressionNodes.setTop(child);
367 if ((child & DTMManager.IDENT_DTM_DEFAULT) != docID)
369 dtm = xctxt.getDTM(child);
370 docID = child & DTMManager.IDENT_DTM_DEFAULT;
373 //final int exNodeType = dtm.getExpandedTypeID(child);
374 final int nodeType = dtm.getNodeType(child);
    [all...]
  /external/autotest/client/cros/cellular/
labconfig_write_stanzas 23 for child in root.values():
24 find_names(visitor, child)
  /external/clang/tools/scan-build-py/libscanbuild/
runner.py 176 child = subprocess.Popen(cmd,
181 output = child.stdout.readlines()
182 child.stdout.close()
184 child.wait()
185 if opts.get('output_failures', False) and child.returncode:
186 error_type = 'crash' if child.returncode & 127 else 'other_error'
190 'exit_code': child.returncode
194 return {'error_output': output, 'exit_code': child.returncode}
  /external/compiler-rt/test/msan/
fork.cc 3 // and verify that origin reads do not deadlock in the child process.
51 // Run through stackdepot in the child process.
53 void child() { function
76 // child
77 child();
  /external/curl/lib/
http2.h 57 struct Curl_easy *child,
60 struct Curl_easy *child);

Completed in 1625 milliseconds

<<21222324252627282930>>