Lines Matching refs:node

43    with at least three components in the node name (e.g. /com/MyCompany/MyApp/)
49 Java pref node names are case-sensitive. If two pref node names differ
51 because the CF keys identifying the node span the entire absolute path
52 to the node and are case-sensitive.
54 Java node names may contain '.' . When mapping to the CF file name,
56 This is ok because the CF key contains the correct node name.
242 // Create an empty node.
243 // Does not store the node in any prefs file.
366 // Find the node for path in the given tree.
367 // Returns NULL on error or if path doesn't have a node in this tree.
396 // didn't find target node
408 // Return a retained copy of the node at path from the given file.
410 // returns NULL if node doesn't exist.
411 // returns NULL if the value for key "path" isn't a valid node.
507 // didn't find target node - add it and continue
541 CFDictionaryRef node = NULL;
546 node = copyNodeIfPresent(path, name, user, host);
548 if (node) {
550 CFRelease(node);
557 // copyMutableNode creates the node if necessary
558 node = copyMutableNode(path, name, user, host, &topKey, &topValue);
559 throwIfNull(node, "copyMutableNode failed");
563 CFRelease(node);
597 // root node is not allowed to be removed, so parentName is never empty
656 CFDictionaryRef node;
663 node = createEmptyNode();
664 throwIfNull(node, "createEmptyNode failed");
666 // copyMutableNode creates the node if necessary
670 CFDictionaryAddValue(parent, child, node);
681 CFRelease(node);
743 CFMutableDictionaryRef node = NULL;
750 node = copyMutableNode(path, name, user, host, &topKey, &topValue);
751 throwIfNull(node, "copyMutableNode failed");
753 CFDictionarySetValue(node, key, value);
756 CFRelease(node);
787 CFMutableDictionaryRef node;
789 node = copyMutableNode(path, name, user, host, &topKey, &topValue);
790 throwIfNull(node, "copyMutableNode failed");
792 CFDictionaryRemoveValue(node, key);
795 CFRelease(node);
821 CFDictionaryRef node;
826 node = copyNodeIfPresent(path, name, user, host);
827 if (node) {
828 value = (CFPropertyListRef)CFDictionaryGetValue(node, key);
846 CFRelease(node);
921 CFDictionaryRef node;
927 node = copyNodeIfPresent(path, name, user, host);
928 if (!node) {
931 count = CFDictionaryGetCount(node);
939 CFDictionaryApplyFunction(node, BuildJavaArrayFn, &args);
954 CFRelease(node);