HomeSort by relevance Sort by last modified time
    Searched refs:locality (Results 1 - 25 of 50) sorted by null

1 2

  /external/tpm2/
LocalityPlat.c 19 // Get the most recent command locality in locality value form. This is an integer value for locality and not a
20 // locality structure The locality can be 0-4 or 32-255. 5-31 is not allowed.
33 // Set the most recent command locality in locality value form
37 unsigned char locality
40 if(locality > 4 && locality < 32
    [all...]
Locality_fp.h 10 TPMA_LOCALITY LocalityGetAttributes(UINT8 locality // IN: locality value
Locality.c 13 // This function will convert a locality expressed as an integer into TPMA_LOCALITY form.
14 // The function returns the locality attribute.
18 UINT8 locality // IN: locality value
24 switch(locality)
42 pAssert(locality < 256 && locality > 31);
43 *localityAsByte = locality;
Startup.c 16 // previous Startup() or the locality of the startup is not 0 pr 3
30 BYTE locality = _plat__LocalityGet(); local
32 // In the PC Client specification, only locality 0 and 3 are allowed
33 if(locality != 0 && locality != 3)
35 // Indicate that the locality was 3 unless there was an H-CRTM
37 locality = 0;
38 g_StartupLocality3 = (locality == 3);
134 PCRStartup(startup, locality);
PolicyLocality_fp.h 14 TPMA_LOCALITY locality; member in struct:__anon23292
TPMCmdp.c 172 unsigned char locality,
182 // Set the locality of the command so that it doesn't change during the command
183 _plat__LocalitySet(locality);
TpmTcpProtocol.h 23 // {BYTE Locality, UINT32 InBufferSize, BYTE[InBufferSize] InBuffer} ->
70 unsigned char locality,
Marshal_PolicyLocality.c 18 result = TPMA_LOCALITY_Unmarshal(&target->locality, buffer, size);
PCR_fp.h 89 BYTE locality // IN: startup locality
PolicyLocality.c 11 // Limit a policy to a specific locality
15 // TPM_RC_RANGE all the locality values selected by locality have been disabled by
37 // Get new locality setting in canonical form
40 marshalSize = TPMA_LOCALITY_Marshal(&in->locality, &buffer, &bufferSize);
42 // Its an error if the locality parameter is zero
46 // Get existing locality setting in canonical form
51 // If the locality has previously been set
53 // then the current locality setting and the requested have to be the same
58 // See if the input is a regular or extended locality
    [all...]
TcpServer.c 458 BYTE locality; local
489 ok = ReadBytes(s, (char*) &locality, 1);
507 _rpc__Send_Command(locality, InBuffer, &OutBuffer);
SessionProcess.c 718 // TPM_RC_LOCALITY command locality is not allowed
738 UINT8 locality; local
785 // Check command locality.
790 // Get existing locality setting in canonical form
792 // See if the locality has been set
795 // If so, get the current locality
796 locality = _plat__LocalityGet();
797 if (locality < 5)
799 if( ((sessionLocality[0] & (1 << locality)) == 0)
803 else if (locality > 31
    [all...]
PCR.c 23 {0, 0x10, 0x1C}, // PCR 17, Locality 4
24 {0, 0x10, 0x1C}, // PCR 18, Locality 3
25 {0, 0x10, 0x0C}, // PCR 19, Locality 2
26 {0, 0x1C, 0x0E}, // PCR 20, Locality 1
469 BYTE locality // IN: startup locality
511 // If the reset locality of the PCR is 4, then
520 pcrData[pcrSize-1] = locality;
609 // This function indicates if a PCR may be reset by the current command locality. The return value is based
625 // Check for the locality
    [all...]
Object_spt.c 608 // Get locality
609 outCreation->t.creationData.locality
    [all...]
tpm_types.h 1639 TPMA_LOCALITY locality; member in struct:__anon23496
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAddress.java 12 private String locality; field in class:ShadowAddress
52 public void setLocality(String locality) {
53 this.locality = locality;
58 return locality;
  /external/ImageMagick/MagickCore/
thread-private.h 43 #define MagickCachePrefetch(address,mode,locality) \
44 __builtin_prefetch(address,mode,locality)
46 #define MagickCachePrefetch(address,mode,locality) \
49 magick_unreferenced(locality);
  /external/tpm2/include/tpm2/
Platform.h 263 // Locality Functions
267 // Get the most recent command locality in locality value form
275 // Set the most recent command locality in locality value form
279 unsigned char locality
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tbs.h 45 TBS_RESULT WINAPI Tbsip_Submit_Command(TBS_HCONTEXT hContext,TBS_COMMAND_LOCALITY locality,TBS_COMMAND_PRIORITY priority,const BYTE *pCommandBuf,UINT32 commandBufLen,BYTE *pResultBuf,UINT32 *pResultBufLen);
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 209 "locality=null,thoroughfare=null,postalCode=95120,countryCode=null," +
265 String locality = "Hollywood"; local
266 address.setLocality(locality);
267 assertEquals(locality, address.getLocality());
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ReverseGeocoder.java 189 // Compare the locality.
276 private String checkNull(String locality) {
277 if (locality == null)
279 if (locality.equals("null"))
281 return locality;
  /frameworks/base/location/java/android/location/
Address.java 167 * Returns the locality of the address, for example "Mountain View", or null if it is unknown.
174 * Sets the locality of the address to the given String, which may be null.
176 public void setLocality(String locality) {
177 mLocality = locality;
181 * Returns the sub-locality of the address, or null if it is unknown.
182 * For example, this may correspond to the neighborhood of the locality.
189 * Sets the sub-locality of the address to the given String, which may be null.
447 sb.append(",locality=");
  /system/tpm/trunks/
tpm_generated_test.cc 49 data.creation_data.locality = 0;
162 "\x00" // creation.locality = 0
mock_tpm.h     [all...]
  /frameworks/rs/api/
rs_for_each.spec 42 locality when the processing is distributed over multiple cores.

Completed in 1211 milliseconds

1 2