Searched refs:FDT_ERR_NOTFOUND (Results 1 - 15 of 15) sorted by relevance

/freebsd-11-stable/contrib/dtc/libfdt/
H A Dfdt_overlay.c76 if (path_len == -FDT_ERR_NOTFOUND)
146 if (ret && ret != -FDT_ERR_NOTFOUND)
150 if (ret && ret != -FDT_ERR_NOTFOUND)
230 if (tree_len == -FDT_ERR_NOTFOUND)
275 if (ret == -FDT_ERR_NOTFOUND)
315 if (fixups == -FDT_ERR_NOTFOUND)
376 return -FDT_ERR_NOTFOUND;
379 if (fixup_off == -FDT_ERR_NOTFOUND)
419 if (len == -FDT_ERR_NOTFOUND)
498 if (fixups_off == -FDT_ERR_NOTFOUND)
[all...]
H A Dfdt_strerror.c66 FDT_ERRTABENT(FDT_ERR_NOTFOUND),
H A Dfdt_ro.c100 if (offset == -FDT_ERR_NOTFOUND)
155 return -FDT_ERR_NOTFOUND;
173 return -FDT_ERR_NOTFOUND;
433 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
450 return -FDT_ERR_NOTFOUND;
463 return -FDT_ERR_NOTFOUND;
469 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
619 return -FDT_ERR_NOTFOUND;
662 *lenp = -FDT_ERR_NOTFOUND;
696 if ((err < 0) && (err != -FDT_ERR_NOTFOUND))
[all...]
H A Dfdt.c193 return -FDT_ERR_NOTFOUND;
208 return -FDT_ERR_NOTFOUND;
224 return -FDT_ERR_NOTFOUND;
H A Dfdt_rw.c198 return -FDT_ERR_NOTFOUND;
281 if (err == -FDT_ERR_NOTFOUND)
348 else if (offset != -FDT_ERR_NOTFOUND)
H A Dlibfdt.h61 #define FDT_ERR_NOTFOUND 1 macro
62 /* FDT_ERR_NOTFOUND: The requested node or property does not exist */
165 * @return offset of first subnode, or -FDT_ERR_NOTFOUND if there is none
177 * @return offset of next subnode, or -FDT_ERR_NOTFOUND if there are no more
374 * -FDT_ERR_NOTFOUND, if the requested subnode does not exist
412 * -FDT_ERR_NOTFOUND, if the requested node does not exist
456 * -FDT_ERR_NOTFOUND, if the requested node has no properties
477 * -FDT_ERR_NOTFOUND, if the given property is the last in its node
577 * -FDT_ERR_NOTFOUND, node does not have named property
670 * -FDT_ERR_NOTFOUND, nod
[all...]
/freebsd-11-stable/sys/contrib/libfdt/
H A Dfdt_overlay.c133 if (ret < 0 && path_len == -FDT_ERR_NOTFOUND)
208 if (ret && ret != -FDT_ERR_NOTFOUND)
212 if (ret && ret != -FDT_ERR_NOTFOUND)
292 if (tree_len == -FDT_ERR_NOTFOUND)
336 if (tree_child == -FDT_ERR_NOTFOUND)
376 if (fixups == -FDT_ERR_NOTFOUND)
438 return -FDT_ERR_NOTFOUND;
441 if (fixup_off == -FDT_ERR_NOTFOUND)
482 if (len == -FDT_ERR_NOTFOUND)
561 if (fixups_off == -FDT_ERR_NOTFOUND)
[all...]
H A Dfdt_strerror.c66 FDT_ERRTABENT(FDT_ERR_NOTFOUND),
H A Dfdt.c196 return -FDT_ERR_NOTFOUND;
211 return -FDT_ERR_NOTFOUND;
227 return -FDT_ERR_NOTFOUND;
H A Dfdt_ro.c101 if (offset == -FDT_ERR_NOTFOUND)
156 return -FDT_ERR_NOTFOUND;
174 return -FDT_ERR_NOTFOUND;
503 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
520 return -FDT_ERR_NOTFOUND;
533 return -FDT_ERR_NOTFOUND;
539 if ((offset == -FDT_ERR_NOTFOUND) || (offset >= 0))
689 return -FDT_ERR_NOTFOUND;
732 *lenp = -FDT_ERR_NOTFOUND;
766 if ((err < 0) && (err != -FDT_ERR_NOTFOUND))
[all...]
H A Dfdt_rw.c198 return -FDT_ERR_NOTFOUND;
281 if (err == -FDT_ERR_NOTFOUND)
362 else if (offset != -FDT_ERR_NOTFOUND)
H A Dlibfdt.h61 #define FDT_ERR_NOTFOUND 1 macro
62 /* FDT_ERR_NOTFOUND: The requested node or property does not exist */
167 * @return offset of first subnode, or -FDT_ERR_NOTFOUND if there is none
179 * @return offset of next subnode, or -FDT_ERR_NOTFOUND if there are no more
377 * -FDT_ERR_NOTFOUND, if the requested subnode does not exist
417 * -FDT_ERR_NOTFOUND, if the requested node does not exist
461 * -FDT_ERR_NOTFOUND, if the requested node has no properties
482 * -FDT_ERR_NOTFOUND, if the given property is the last in its node
587 * -FDT_ERR_NOTFOUND, node does not have named property
684 * -FDT_ERR_NOTFOUND, nod
[all...]
/freebsd-11-stable/stand/fdt/
H A Dfdt_loader_cmd.c286 /* Attempt to load and validate a new dtb from a file. FDT_ERR_NOTFOUND
288 * -FDT_ERR_NOTFOUND. We re-purpose the error code here to convey a
293 return (FDT_ERR_NOTFOUND);
311 case FDT_ERR_NOTFOUND:
349 if (err == FDT_ERR_NOTFOUND) {
671 while (o != -FDT_ERR_NOTFOUND && o2 != -FDT_ERR_NOTFOUND) {
953 -FDT_ERR_NOTFOUND)
1786 (rv == -FDT_ERR_NOTFOUND) ?
/freebsd-11-stable/contrib/dtc/
H A Dfdtget.c132 return prop == -FDT_ERR_NOTFOUND ? 0 : prop;
H A Dfdtput.c219 if (node == -FDT_ERR_NOTFOUND) {

Completed in 244 milliseconds