Searched refs:raw (Results 1 - 25 of 190) sorted by relevance

12345678

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dbase16.h29 * @v max_raw_len Maximum length of raw data
35 extern void base16_encode ( const uint8_t *raw, size_t len, char *encoded );
36 extern int base16_decode ( const char *encoded, uint8_t *raw );
H A Dbase64.h29 * @v max_raw_len Maximum length of raw data
31 * Note that the exact length of the raw data cannot be known until
38 extern void base64_encode ( const uint8_t *raw, size_t len, char *encoded );
39 extern int base64_decode ( const char *encoded, uint8_t *raw );
H A Duuid.h28 uint8_t raw[16]; member in union:uuid
H A Dx509.h22 struct asn1_cursor raw; member in struct:x509_serial
28 struct asn1_cursor raw; member in struct:x509_issuer
48 struct asn1_cursor raw; member in struct:x509_public_key
58 struct asn1_cursor raw; member in struct:x509_subject
164 struct asn1_cursor raw; member in struct:x509_certificate
282 * @v raw ASN.1 cursor
286 const struct asn1_cursor *raw );
308 * @v raw ASN.1 cursor
312 const struct asn1_cursor *raw );
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dbase16.c36 * @v raw Raw data
37 * @v len Length of raw data
48 void base16_encode ( const uint8_t *raw, size_t len, char *encoded ) { argument
49 const uint8_t *raw_bytes = raw;
58 DBG_HDA ( 0, raw, len );
66 * @v raw Raw data
67 * @ret len Length of raw data, or negative error
76 int base16_decode ( const char *encoded, uint8_t *raw ) {
78 uint8_t *raw_bytes = raw;
99 len = ( raw_bytes - raw );
[all...]
H A Dbase64.c40 * @v raw Raw data
41 * @v len Length of raw data
52 void base64_encode ( const uint8_t *raw, size_t len, char *encoded ) { argument
53 const uint8_t *raw_bytes = ( ( const uint8_t * ) raw );
70 DBG_HDA ( 0, raw, len );
78 * @v raw Raw data
79 * @ret len Length of raw data, or negative error
88 int base64_decode ( const char *encoded, uint8_t *raw ) {
90 uint8_t *raw_bytes = ( ( uint8_t * ) raw );
98 /* Zero the raw dat
[all...]
/vbox/src/libs/libpng-1.2.8/contrib/pngminus/
H A Dpng2pnm.sh22 ./png2pnm -raw ../pngsuite/basn0g01.png rawn0g01.pgm
23 ./png2pnm -raw ../pngsuite/basn0g02.png rawn0g02.pgm
24 ./png2pnm -raw ../pngsuite/basn0g04.png rawn0g04.pgm
25 ./png2pnm -raw ../pngsuite/basn0g08.png rawn0g08.pgm
26 ./png2pnm -raw ../pngsuite/basn0g16.png rawn0g16.pgm
28 ./png2pnm -raw ../pngsuite/basn2c08.png rawn2c08.ppm
29 ./png2pnm -raw ../pngsuite/basn2c16.png rawn2c16.ppm
31 ./png2pnm -raw ../pngsuite/basn3p01.png rawn3p01.ppm
32 ./png2pnm -raw ../pngsuite/basn3p02.png rawn3p02.ppm
33 ./png2pnm -raw
[all...]
H A Dpng2pnm.c54 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha);
65 BOOL raw = TRUE; local
76 raw = FALSE;
79 raw = TRUE;
137 if ((raw) && (fp_wr == stdout))
144 if (png2pnm (fp_rd, fp_wr, fp_al, raw, alpha) == FALSE)
188 BOOL png2pnm (FILE *png_file, FILE *pnm_file, FILE *alpha_file, BOOL raw, BOOL alpha) argument
287 raw = FALSE;
348 fprintf (pnm_file, "%s\n", (raw) ? "P5" : "P2");
355 fprintf (pnm_file, "%s\n", (raw)
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dx509.c157 * @v raw ASN.1 cursor
161 const struct asn1_cursor *raw ) {
167 memcpy ( &cursor, raw, sizeof ( cursor ) );
174 DBGC_HDA ( cert, 0, raw->data, raw->len );
181 DBGC_HDA ( cert, 0, raw->data, raw->len );
197 * @v raw ASN.1 cursor
201 const struct asn1_cursor *raw ) {
205 /* Record raw seria
1030 void *raw; local
[all...]
H A Dcms.c80 * @v raw ASN.1 cursor
84 const struct asn1_cursor *raw ) {
88 memcpy ( &cursor, raw, sizeof ( cursor ) );
94 DBGC_HDA ( sig, 0, raw->data, raw->len );
106 * @v raw ASN.1 cursor
110 const struct asn1_cursor *raw ) {
116 memcpy ( &cursor, raw, sizeof ( cursor ) );
161 if ( ( asn1_compare ( issuer, &cert->issuer.raw ) == 0 ) &&
162 ( asn1_compare ( serial, &cert->serial.raw )
[all...]
H A Docsp.c145 digest_update ( digest, digest_ctx, ocsp->cert->issuer.raw.data,
146 ocsp->cert->issuer.raw.len );
155 if ( ( rc = ( asn1_prepend_raw ( builder, ocsp->cert->serial.raw.data,
156 ocsp->cert->serial.raw.len ),
236 * @v raw ASN.1 cursor
240 const struct asn1_cursor *raw ) {
246 memcpy ( &cursor, raw, sizeof ( cursor ) );
276 * @v raw ASN.1 cursor
280 const struct asn1_cursor *raw ) {
284 memcpy ( &cursor, raw, sizeo
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageMisc.cpp72 rc = a->virtualBox->OpenMachine(Bstr(a->argv[0]).raw(),
83 CHECK_ERROR(a->virtualBox, OpenMachine(Bstr(szVMFileAbs).raw(),
87 CHECK_ERROR(a->virtualBox, OpenMachine(Bstr(a->argv[0]).raw(),
152 CHECK_ERROR_RET(a->virtualBox, FindMachine(Bstr(VMName).raw(),
237 bstrUuid = Guid(ValueUnion.Uuid).toUtf16().raw();
257 createFlags = BstrFmt("UUID=%ls", bstrUuid.raw());
263 ComposeMachineFilename(bstrName.raw(),
264 bstrPrimaryGroup.raw(),
265 createFlags.raw(),
266 bstrBaseFolder.raw(),
[all...]
H A DVBoxManageStorageController.cpp323 CHECK_ERROR_RET(a->virtualBox, FindMachine(Bstr(a->argv[0]).raw(),
343 rc = machine->GetStorageControllerByName(Bstr(pszCtl).raw(),
392 CHECK_ERROR(machine, DetachDevice(Bstr(pszCtl).raw(), port, device));
400 rc = machine->GetMediumAttachment(Bstr(pszCtl).raw(), port, device,
410 CHECK_ERROR(machine, UnmountMedium(Bstr(pszCtl).raw(),
422 CHECK_ERROR(machine, AttachDeviceWithoutMedium(Bstr(pszCtl).raw(), port, device,
459 machine->DetachDevice(Bstr(pszCtl).raw(), port, device);
460 CHECK_ERROR(machine, AttachDeviceWithoutMedium(Bstr(pszCtl).raw(), port, device,
488 rc = machine->GetMediumAttachment(Bstr(pszCtl).raw(), port,
561 rc = host->FindHostDVDDrive(Bstr(pszMedium + 5).raw(),
[all...]
H A DVBoxManageInfo.cpp67 RTPrintf("SnapshotName%s=\"%ls\"\n", prefix.c_str(), name.raw());
70 RTPrintf("SnapshotDescription%s=\"%ls\"\n", prefix.c_str(), description.raw());
73 RTPrintf("CurrentSnapshotName=\"%ls\"\n", name.raw());
83 name.raw(),
87 RTPrintf(" %sDescription:\n%ls\n", prefix.c_str(), description.raw());
289 RTPrintf("BandwidthGroup%zu=%ls,%s,%lld\n", i, strName.raw(), pszType, cMaxBytesPerSec);
296 RTPrintf("Name: '%ls', Type: %s, Limit: none (disabled)\n", strName.raw(), pszType);
337 RTPrintf("Name: '%ls', Type: %s, Limit: %lld %sbits/sec (%lld %sbytes/sec)\n", strName.raw(), pszType, cBits, pszNetUnits, cBytes, pszUnits);
341 RTPrintf("Name: '%ls', Type: %s, Limit: %lld %sbytes/sec\n", strName.raw(), pszType, cBytes, pszUnits);
402 RTPrintf("%-16s %ls\n", a_szHuman ":", bstr.raw()); \
[all...]
H A DVBoxManageList.cpp127 RTPrintf("Name: %ls\n", interfaceName.raw());
130 RTPrintf("GUID: %ls\n\n", Bstr(interfaceGuid.toString()).raw());
134 RTPrintf("Name: %ls\n", interfaceName.raw());
137 RTPrintf("GUID: %ls\n", interfaceGuid.raw());
144 RTPrintf("IPAddress: %ls\n", IPAddress.raw());
147 RTPrintf("NetworkMask: %ls\n", NetworkMask.raw());
150 RTPrintf("IPV6Address: %ls\n", IPV6Address.raw());
156 RTPrintf("HardwareAddress: %ls\n", HardwareAddress.raw());
165 RTPrintf("VBoxNetworkName: %ls\n\n", netName.raw());
214 RTPrintf("Processor#%u description: %ls\n", i, processorDescription.raw());
[all...]
H A DVBoxManageUSB.cpp223 CHECK_ERROR_RET(a->virtualBox, FindMachine(Bstr(a->argv[i]).raw(),
372 CHECK_ERROR_RET(a->virtualBox, FindMachine(Bstr(a->argv[i]).raw(),
411 CHECK_ERROR_BREAK(host, CreateUSBDeviceFilter(f.mName.raw(),
417 CHECK_ERROR_BREAK(flt, COMSETTER(VendorId)(f.mVendorId.raw()));
419 CHECK_ERROR_BREAK(flt, COMSETTER(ProductId)(f.mProductId.raw()));
421 CHECK_ERROR_BREAK(flt, COMSETTER(Revision)(f.mRevision.raw()));
423 CHECK_ERROR_BREAK(flt, COMSETTER(Manufacturer)(f.mManufacturer.raw()));
425 CHECK_ERROR_BREAK(flt, COMSETTER(SerialNumber)(f.mSerialNumber.raw()));
437 CHECK_ERROR_BREAK(flts, CreateDeviceFilter(f.mName.raw(),
443 CHECK_ERROR_BREAK(flt, COMSETTER(VendorId)(f.mVendorId.raw()));
[all...]
H A DVBoxManageGuestProp.cpp92 CHECK_ERROR(a->virtualBox, FindMachine(Bstr(a->argv[0]).raw(),
105 CHECK_ERROR(machine, GetGuestProperty(Bstr(a->argv[1]).raw(),
111 RTPrintf("Value: %ls\n", value.raw());
115 RTPrintf("Flags: %ls\n", flags.raw());
153 CHECK_ERROR(a->virtualBox, FindMachine(Bstr(a->argv[0]).raw(),
164 CHECK_ERROR(machine, SetGuestPropertyValue(Bstr(pszName).raw(),
165 Bstr(pszValue).raw()));
167 CHECK_ERROR(machine, SetGuestProperty(Bstr(pszName).raw(),
168 Bstr(pszValue).raw(),
169 Bstr(pszFlags).raw()));
[all...]
H A DVBoxManageModifyVM.cpp470 CHECK_ERROR_RET(a->virtualBox, FindMachine(Bstr(a->argv[0]).raw(),
499 CHECK_ERROR(sessionMachine, COMSETTER(Name)(Bstr(ValueUnion.psz).raw()));
511 CHECK_ERROR(sessionMachine, COMSETTER(Description)(Bstr(ValueUnion.psz).raw()));
517 CHECK_ERROR(a->virtualBox, GetGuestOSType(Bstr(ValueUnion.psz).raw(),
521 CHECK_ERROR(sessionMachine, COMSETTER(OSTypeId)(Bstr(ValueUnion.psz).raw()));
556 rc = RTFileRead(iconFile, icon.raw(), (size_t)cbSize, NULL);
834 CHECK_ERROR(biosSettings, COMSETTER(LogoImagePath)(Bstr(ValueUnion.psz).raw()));
931 sessionMachine->DetachDevice(bstrController.raw(), u1, u2);
944 CHECK_ERROR(sessionMachine, AttachDevice(bstrController.raw(),
958 CHECK_ERROR(sessionMachine, GetStorageControllerByName(Bstr("IDE Controller").raw(),
[all...]
/vbox/src/VBox/Frontends/VBoxBalloonCtrl/
H A DVBoxModAPIMonitor.cpp188 apimonResponseToStr(enmResp), ulTimeout, strUuid.raw()));
196 CHECK_ERROR_RET(g_pVirtualBox, FindMachine(strUuid.raw(),
227 strUuid.raw()));
234 strUuid.raw()));
238 strUuid.raw()));
244 strUuid.raw()));
261 strUuid.raw(), machineState, apimonMachineStateToName(machineState, false));
278 strUuid.raw()));
283 serviceLogVerbose(("apimon: State of machine \"%ls\" saved, powering off ...\n", strUuid.raw()));
287 serviceLogVerbose(("apimon: Saving state of machine \"%ls\" failed\n", strUuid.raw()));
[all...]
/vbox/src/VBox/Main/testcase/
H A DtstAPI.cpp65 RTPrintf("Name: {%ls}\n", name.raw());
138 RTPrintf("Description is: \"%ls\"\n", desc.raw());
141 RTPrintf("Setting description to \"%ls\"...\n", desc.raw());
142 CHECK_ERROR_RET(machine, COMSETTER(Description)(desc.raw()), rc);
164 RTPrintf("Getting extra data key {%ls}...\n", extraDataKey.raw());
165 CHECK_ERROR_RET(machine, GetExtraData(extraDataKey.raw(), extraData.asOutParam()), rc);
167 RTPrintf("Extra data value: {%ls}\n", extraData.raw());
177 extraDataKey.raw(), extraData.raw());
178 CHECK_ERROR(machine, SetExtraData(extraDataKey.raw(), extraDat
[all...]
/vbox/src/VBox/Main/src-server/
H A DHostNetworkInterfaceImpl.cpp72 aInterfaceName.raw(), aGuid.toString().c_str()));
98 mShortName.raw(), mInterfaceName.raw(), mGuid.toString().c_str(), m.speedMbits));
101 Utf8StrFmt strName("Net/%ls", mShortName.raw());
147 mShortName.raw(), mInterfaceName.raw(), mGuid.toString().c_str()));
148 Utf8StrFmt name("Net/%ls", mShortName.raw());
196 // aInterfaceName.raw(), aGuid.toString().raw()));
451 mInterfaceName.raw())
[all...]
/vbox/include/VBox/com/
H A Darray.h193 (aArray).size(), (aArray).__asInParam_Arr((aArray).raw())
548 * Helper for SafeArray::__asOutParam() that automatically updates m.raw after a
554 : arr(aArr), raw(aRaw) { Assert(*aArr == NULL && *aRaw == NULL); }
557 void **raw;
567 HRESULT rc = SafeArrayAccessData(*arr, raw);
591 * using #operator[] or by accessing array data through the #raw() pointer, it is
673 rc = SafeArrayAccessData(arg, (void HUGEP **)&m.raw);
704 Copy(*it, m.raw[i]);
735 Copy(it->second, m.raw[i]);
811 Copy(aElement, m.raw[siz
906 T *raw() function in class:com::SafeArray
918 const T *raw() const function in class:com::SafeArray
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsStaticNameTable.cpp143 const char* raw = aNames[index]; local
147 nsCAutoString temp1(raw);
148 nsDependentCString temp2(raw);
151 NS_ASSERTION(nsCRT::IsAscii(raw),
157 new (&mNameArray[index]) nsDependentCString(raw);
161 PL_DHashTableOperate(&mNameTable, raw, PL_DHASH_ADD));
167 entry->mKey = raw; // not owned!
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dzip.h197 int raw));
210 int raw,
213 Same than zipOpenNewFileInZip, except if raw=1, we write raw file
226 int raw,
243 int raw,
269 int raw,
290 int raw,
329 parameter raw=1 in zipOpenNewFileInZip2
/vbox/src/libs/zlib-1.2.6/examples/
H A Dfitblk.c8 Use fixed-size, stack-allocated raw buffers
76 unsigned char raw[RAWLEN]; local
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
99 unsigned char raw[RAWLEN]; local
105 inf->next_out = raw;
114 def->next_in = raw;

Completed in 99 milliseconds

12345678