Searched refs:all (Results 1 - 25 of 28) sorted by last modified time

12

/haiku/src/apps/diskprobe/
H A DProbeView.cpp139 void UpdatePositionViews(bool all = true);
140 void UpdateOffsetViews(bool all = true);
589 HeaderView::UpdatePositionViews(bool all) argument
595 if (all) {
603 HeaderView::UpdateOffsetViews(bool all) argument
609 if (all) {
883 operating. Therefore, all offset updates for the editor will go through
1309 menu->AddItem(item = new BMenuItem(B_TRANSLATE("Select all"),
/haiku/src/system/kernel/
H A Dcondition_variable.cpp350 ConditionVariable::_Notify(const void* object, bool all, status_t result) argument
360 return variable->_NotifyLocked(all, result);
365 ConditionVariable::_Notify(bool all, status_t result) argument
374 return _NotifyLocked(all, result);
383 ConditionVariable::_NotifyLocked(bool all, status_t result) argument
432 if (!all)
537 "Lists all published condition variables\n", 0);
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_node.c203 ieee80211_del_ess(struct ieee80211com *ic, char *nwid, int len, int all) argument
208 if (all == 1 || (ess->esslen == len &&
215 if (all != 1)
841 * In all but hostap mode scanning starts off in
1506 * If the device scans all bands in one fell swoop, return
1592 * all dispatched frames have been processed by hardware.
1923 * Of all the 802.11 Control packets, only the node-records for
2130 DPRINTF(("freeing all nodes\n"));
2159 * modes, clean all inactive cached or authenticated nodes but don't de-auth
2287 * During a cache timeout we iterate over all node
[all...]
/haiku/src/kits/interface/
H A DTextView.cpp2702 // When not editable, we assume that all text is supposed to be visible.
4250 offset with the given length, expanding all tab characters as needed.
5722 // clauses at all, while the bebook says we should; though the visual
5741 // user would have pressed them now - this lets KeyDown() pick out all
5948 .AddItem(TRANSLATE("Select all"), B_SELECT_ALL, 'A')
/haiku/headers/private/kernel/
H A Dcondition_variable.h82 static int32 _Notify(const void* object, bool all, status_t result);
83 int32 _Notify(bool all, status_t result);
84 int32 _NotifyLocked(bool all, status_t result);
/haiku/src/bin/
H A Ddf.cpp143 PrintCompact(dev_t device, bool showBlocks, bool all) argument
149 if (!all && (info.flags & B_FS_IS_PERSISTENT) == 0)
174 printf("usage: %s [--help | --blocks, -b | -all, -a] [<path-to-device>]\n"
175 " -a, --all\tinclude all file systems, also those not visible from Tracker\n"
198 bool all = false; local
207 all = true;
221 if (!strcmp(arg, "all"))
222 all = true;
239 // If not, then just iterate over all device
[all...]
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dcondition_variable.cpp212 ConditionVariable::_Notify(bool all, status_t result) argument
223 return _NotifyLocked(all, result);
233 ConditionVariable::_NotifyLocked(bool all, status_t result) argument
250 if (!all)
/haiku/src/apps/mail/
H A DContent.cpp15 The above copyright notice and this permission notice applies to all licensees
16 and shall be included in all copies or substantial portions of the Software.
465 // set styles for all qoute levels in the text to be inserted
2463 // strip all headers except "From", "To", "Reply-To", "Subject", and "Date"
2807 // Look for all uppercase
2818 // Don't check all uppercase words
2831 // Search all dictionaries
/haiku/src/servers/mount/
H A DAutoMounter.cpp175 // mount all volumes that were stored in the settings file
788 AutoMounter::_FromMode(mount_mode mode, bool& all, bool& bfs, bool& restore) argument
790 all = bfs = restore = false;
794 all = true;
810 AutoMounter::_ToMode(bool all, bool bfs, bool restore) argument
812 if (all)
915 bool all, bfs, restore; local
916 if (message->FindBool("autoMountAll", &all) != B_OK)
917 all = true;
921 fRemovableMode = _ToMode(all, bf
946 bool all, bfs, restore; local
[all...]
H A DAutoMounter.h52 void _FromMode(mount_mode mode, bool& all,
54 mount_mode _ToMode(bool all, bool bfs,
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmbuf.h138 // Length to m_copy to copy all.
304 void m_demote(struct mbuf *m0, int all, int flags);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsecurity.c397 * indexes. In all three cases it forms part of the SDS_ENTRY_HEADER
557 le64 all; member in union:__anon124
580 realign.all = cpu_to_le64(offs);
636 le64 all; member in union:__anon126
695 * sometimes deletes all the (unused) keys in the last
713 offs = le64_to_cpu(realign.all);
740 offs = le64_to_cpu(realign.all);
806 /* inode now is dirty, synchronize it all */
835 le64 all; member in union:__anon128
896 offs = le64_to_cpu(realign.all)
1817 le64 all; member in union:__anon132
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8335/dev/malo/
H A Dif_malo.c98 MALO_DEBUG_RECV_ALL = 0x00001000, /* trace all frames (beacons) */
154 * Read/Write shorthands for accesses to BAR 0. Note that all BAR 1
1134 * the 802.11 header. In particular this includes all crypto
1507 ieee80211_start_all(ic); /* start all vap's */
1527 goto all;
1542 goto all;
1554 all:
2009 * The 802.11 header is provided all or in part at the front;
2093 * Reclaim all tx queue resources.
/haiku/src/apps/pulse/
H A DProgressBar.cpp95 // Draws the progress bar. If "all" is true the entire bar is redrawn rather
98 ProgressBar::Render(bool all) argument
100 if (all) {
H A DProgressBar.h39 void Render(bool all = false);
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_uipc_mbuf.c222 * If "all" is set then the first mbuf in the chain will be
226 m_demote(struct mbuf *m0, int all, int flags) argument
230 for (m = all ? m0 : m0->m_next; m != NULL; m = m->m_next) {
242 * Returns 0 or panics when bad and 1 on all tests passed.
884 * all but the first len0 bytes. In case of failure, it returns NULL and
1536 /* Fill all mbufs with uio data and update header information. */
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex61 In all file formats described in this section the resources are being located
217 resource index subsection. The latter locates all other data in the file.
389 The meaning of this section is unknown. It does not seem to be used at all.
538 calculated from all bytes of the resource info table not including
607 resulted from the attempt to assign all the fields a reasonable meaning, but
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.h595 This function should not be called until all member variables in
596 the descriptor_tag's enclosing descriptor and all member variables
641 According to UDF-2.01 2.3.1.2, the CRC shall be calculated for all descriptors
1532 Contains all the pertinent info about a file set (i.e. a hierarchy of files)
1636 descriptor shall all be set to 0.
1675 c.all = characteristics();
1681 c.all = characteristics();
1687 c.all = characteristics();
1693 c.all = characteristics();
1699 c.all
1771 uint8 all; member in union:file_id_descriptor::characteristics_accessor
[all...]
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KPagingMethod040.cpp306 #warning M68K:FIXME: insert *all* page tables!
429 // TODO: Note, this only works as long as all pages belong to the same
477 // mapping the contents of all of the 4MB of pagetables into a 4 MB region.
676 // note the bootloader allocates all page directories for us
/haiku/src/tests/add-ons/print/ppd/parser/
H A DPPDParser.cpp362 PPD* PPDParser::Parse(bool all) argument
364 fParseAll = all;
H A DPPDParser.h39 PPD* Parse(bool all);
/haiku/src/tests/add-ons/print/ppd/test/
H A DTest.cpp16 void TestPPDParser(bool all, bool verbose = true);
27 if (strcmp(arg, "all") == 0) return true;
35 fprintf(stderr, " all\n");
H A DTestParser.cpp35 static PPD* OpenTestFile(bool all, bool timing) argument
48 PPD* ppd = all ? parser.ParseAll() : parser.ParseHeader();
61 void TestPPDParser(bool all, bool verbose) argument
63 PPD* ppd = OpenTestFile(all, !verbose);
/haiku/src/libs/stdc++/legacy/
H A Diostream.cc891 { Is in osform.cc, to avoid pulling in all of _IO_vfprintf by this file. */ }
/haiku/src/system/kernel/arch/m68k/
H A Darch_vm_translation_map_impl.cpp38 than one per page, and allocate them all at once, and add them at the
39 same time to the tree. So we guarantee all higher-level entries modulo
200 #warning M68K: allocate all kernel pgdirs at boot and remove this (also dont remove them anymore from unmap)
290 flush all pending changes of this map (ie. flush TLB caches as
341 // cycle through and free all of the user space pgtables
344 // we make sure they are either all in the tree or none.
1041 // invalidate all pages
1042 TRACE(("flush_tmap: %d pages to invalidate, invalidate all\n",
1260 // we already have all page directories allocated by the bootloader,
1283 // note the bootloader allocates all pag
[all...]

Completed in 223 milliseconds

12