Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 2373) sorted by relevance

12345678910>>...95

/aosp12/frameworks/base/core/tests/coretests/src/android/os/
H A DParcelNullabilityTest.java41 Parcel p = Parcel.obtain(); in nullByteArray() local
49 Parcel p = Parcel.obtain(); in nullBlob() local
57 Parcel p = Parcel.obtain(); in nullString() local
65 Parcel p = Parcel.obtain(); in nullCharSequence() local
73 Parcel p = Parcel.obtain(); in nullStrongBinder() local
81 Parcel p = Parcel.obtain(); in nullStringInterface() local
89 Parcel p = Parcel.obtain(); in nullFileDescriptor() local
99 Parcel p = Parcel.obtain(); in nullRawFileDescriptor() local
109 Parcel p = Parcel.obtain(); in nullRawFileDescriptorArray() local
117 Parcel p = Parcel.obtain(); in nullMap() local
[all …]
/aosp12/system/nfc/src/include/
H A Dnfc_types.h50 #define UINT32_TO_STREAM(p, u32) \ argument
57 #define UINT16_TO_STREAM(p, u16) \ argument
62 #define UINT8_TO_STREAM(p, u8) \ argument
64 #define INT8_TO_STREAM(p, u8) \ argument
76 #define STREAM_TO_UINT8(u8, p) \ argument
109 #define UINT32_TO_BE_STREAM(p, u32) \ argument
116 #define UINT24_TO_BE_STREAM(p, u24) \ argument
122 #define UINT16_TO_BE_STREAM(p, u16) \ argument
127 #define UINT8_TO_BE_STREAM(p, u8) \ argument
135 #define BE_STREAM_TO_UINT8(u8, p) \ argument
[all …]
/aosp12/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerPropertyTests.java38 final Property p = in testBooleanProperty() local
63 final Property p = in testFloatProperty() local
88 final Property p = in testIntegerProperty() local
113 final Property p = in testResourceProperty() local
138 final Property p = in testStringProperty() local
164 final Property p = new Property(null, 1, "android", null); in testProperty_invalidName() local
173 final Property p = new Property("invalidTypeProperty", 0, "android", null); in testProperty_invalidType() local
179 final Property p = new Property("invalidTypeProperty", 6, "android", null); in testProperty_invalidType() local
185 final Property p = new Property("invalidTypeProperty", -1, "android", null); in testProperty_invalidType() local
194 final Property p = new Property(null, 1, null, null); in testProperty_noPackageName() local
/aosp12/hardware/interfaces/power/stats/aidl/default/
H A Dmain.cpp34 void setFakeEnergyMeter(std::shared_ptr<PowerStats> p) { in setFakeEnergyMeter()
43 void addFakeStateResidencyDataProvider1(std::shared_ptr<PowerStats> p) { in addFakeStateResidencyDataProvider1()
48 void addFakeStateResidencyDataProvider2(std::shared_ptr<PowerStats> p) { in addFakeStateResidencyDataProvider2()
53 void addFakeEnergyConsumer1(std::shared_ptr<PowerStats> p) { in addFakeEnergyConsumer1()
57 void addFakeEnergyConsumer2(std::shared_ptr<PowerStats> p) { in addFakeEnergyConsumer2()
64 std::shared_ptr<PowerStats> p = ndk::SharedRefBase::make<PowerStats>(); in main() local
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_processor_factory_test.cpp49 auto p = f.CreateProcessor(RSDisplayRenderNode::CompositeType::HARDWARE_COMPOSITE); variable
61 …auto p = RSProcessorFactory::CreateProcessor(RSDisplayRenderNode::CompositeType::HARDWARE_COMPOSIT… variable
73 …auto p = RSProcessorFactory::CreateProcessor(RSDisplayRenderNode::CompositeType::SOFTWARE_COMPOSIT… variable
85 …auto p = RSProcessorFactory::CreateProcessor(RSDisplayRenderNode::CompositeType::UNI_RENDER_COMPOS… variable
97 …auto p = RSProcessorFactory::CreateProcessor(RSDisplayRenderNode::CompositeType::UNI_RENDER_MIRROR… variable
109 …auto p = RSProcessorFactory::CreateProcessor(RSDisplayRenderNode::CompositeType::UNI_RENDER_EXPAND… variable
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dpointertest.cpp37 Pointer p(""); in TEST() local
43 Pointer p("/"); in TEST() local
52 Pointer p("/foo"); in TEST() local
103 Pointer p("/"); in TEST() local
112 Pointer p("//a"); in TEST() local
161 Pointer p(" "); in TEST() local
169 Pointer p("/~"); in TEST() local
186 Pointer p("#"); in TEST() local
523 Pointer p; in TEST() local
533 Pointer p; in TEST() local
[all …]
/aosp12/system/bt/stack/include/
H A Dbt_types.h173 #define UINT8_TO_STREAM(p, u8) \ argument
175 #define INT8_TO_STREAM(p, u8) \ argument
215 #define STREAM_TO_INT8(u8, p) \ argument
220 #define STREAM_TO_UINT8(u8, p) \ argument
296 #define STREAM_SKIP_UINT8(p) \ argument
300 #define STREAM_SKIP_UINT16(p) \ argument
304 #define STREAM_SKIP_UINT32(p) \ argument
331 #define UINT8_TO_FIELD(p, u8) \ argument
355 #define UINT8_TO_BE_STREAM(p, u8) \ argument
368 #define BE_STREAM_TO_UINT8(u8, p) \ argument
[all …]
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dswab.h62 static __always_inline __u16 __swab16p(const __u16 * p) { in __swab16p()
69 static __always_inline __u32 __swab32p(const __u32 * p) { in __swab32p()
76 static __always_inline __u64 __swab64p(const __u64 * p) { in __swab64p()
83 static inline __u32 __swahw32p(const __u32 * p) { in __swahw32p()
90 static inline __u32 __swahb32p(const __u32 * p) { in __swahb32p()
97 static inline void __swab16s(__u16 * p) { in __swab16s()
104 static __always_inline void __swab32s(__u32 * p) { in __swab32s()
111 static __always_inline void __swab64s(__u64 * p) { in __swab64s()
118 static inline void __swahw32s(__u32 * p) { in __swahw32s()
125 static inline void __swahb32s(__u32 * p) { in __swahb32s()
/aosp12/system/nfc/src/nfc/nci/
H A Dnci_hmsgs.cc43 NFC_HDR* p; in nci_snd_core_reset() local
74 NFC_HDR* p; in nci_snd_core_init() local
108 NFC_HDR* p; in nci_snd_core_get_config() local
140 NFC_HDR* p; in nci_snd_core_set_config() local
189 NFC_HDR* p; in nci_snd_core_conn_create() local
226 NFC_HDR* p; in nci_snd_core_conn_close() local
260 NFC_HDR* p; in nci_snd_nfcee_discover() local
294 NFC_HDR* p; in nci_snd_nfcee_mode_set() local
328 NFC_HDR* p; in nci_snd_iso_dep_nak_presence_check_cmd() local
359 NFC_HDR* p; in nci_snd_discover_cmd() local
[all …]
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dndk_test.cpp40 const NativePixelMap *p = nullptr; variable
56 const NativePixelMap *p = nullptr; variable
72 const NativePixelMap *p = nullptr; variable
88 const NativePixelMap *p = nullptr; variable
104 const NativePixelMap *p = nullptr; variable
120 const NativePixelMap *p = nullptr; variable
136 const NativePixelMap *p = nullptr; variable
152 const NativePixelMap *p = nullptr; variable
169 const NativePixelMap *p = nullptr; variable
187 const NativePixelMap *p = nullptr; variable
[all …]
/aosp12/system/bt/stack/avdt/
H A Davdt_msg.cc332 static void avdt_msg_bld_none(UNUSED_ATTR uint8_t** p, in avdt_msg_bld_none()
348 static void avdt_msg_bld_single(uint8_t** p, tAVDT_MSG* p_msg) { in avdt_msg_bld_single()
399 static void avdt_msg_bld_multi(uint8_t** p, tAVDT_MSG* p_msg) { in avdt_msg_bld_multi()
679 UNUSED_ATTR uint8_t* p, in avdt_msg_prs_none()
1065 uint8_t* p; in avdt_msg_send() local
1208 uint8_t* p; in avdt_msg_asmbl() local
1338 uint8_t* p; in avdt_msg_send_cmd() local
1394 uint8_t* p; in avdt_msg_send_rsp() local
1434 uint8_t* p; in avdt_msg_send_rej() local
1485 uint8_t* p; in avdt_msg_send_grej() local
[all …]
/aosp12/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraCapabilities.java40 AndroidCameraCapabilities(Camera.Parameters p) { in AndroidCameraCapabilities()
89 private void buildPreviewFpsRange(Camera.Parameters p) { in buildPreviewFpsRange()
97 private void buildPreviewSizes(Camera.Parameters p) { in buildPreviewSizes()
107 private void buildVideoSizes(Camera.Parameters p) { in buildVideoSizes()
117 private void buildPictureSizes(Camera.Parameters p) { in buildPictureSizes()
128 private void buildSceneModes(Camera.Parameters p) { in buildSceneModes()
171 private void buildFlashModes(Camera.Parameters p) { in buildFlashModes()
193 private void buildFocusModes(Camera.Parameters p) { in buildFocusModes()
216 private void buildWhiteBalances(Camera.Parameters p) { in buildWhiteBalances()
/ohos5.0/foundation/ai/ai_engine/services/common/utils/
H A Dinf_cast_impl.h33 C *p = nullptr; in Create() local
47 C *p = nullptr; in Create() local
62 C *p = nullptr; in Create() local
78 C *p = nullptr; in Create() local
95 C *p = nullptr; in Create() local
116 static C& Ref(I* p) in Ref()
121 static const C& Ref(const I* p) in Ref()
/aosp12/frameworks/rs/script_api/
H A DGenerateTestFiles.cpp203 for (auto p : mAllInputsAndOutputs) { in PermutationWriter() local
288 for (auto p : mAllInputsAndOutputs) { in writeJavaCheckMethod() local
294 for (auto p : mAllInputsAndOutputs) { in writeJavaCheckMethod() local
307 for (auto p : mAllInputsAndOutputs) { in writeJavaCheckMethod() local
414 for (auto p : mAllInputsAndOutputs) { in writeJavaVerifyScalarMethod() local
436 for (auto p : mAllInputsAndOutputs) { in writeJavaVerifyScalarMethod() local
503 for (auto p : mAllInputsAndOutputs) { in writeJavaVerifyScalarMethod() local
539 for (auto p : mAllInputsAndOutputs) { in writeJavaVerifyVectorMethod() local
551 for (auto p : mAllInputsAndOutputs) { in writeJavaVerifyVectorMethod() local
567 for (auto p : mAllInputsAndOutputs) { in writeJavaVerifyVectorMethod() local
[all …]
/aosp12/frameworks/base/core/java/android/content/pm/
H A DPackageParserCacheHelper.java45 public ReadHelper(Parcel p) { in ReadHelper()
84 public String readString(Parcel p) { in readString()
89 public String readString8(Parcel p) { in readString8()
94 public String readString16(Parcel p) { in readString16()
113 public WriteHelper(Parcel p) { in WriteHelper()
125 public void writeString(Parcel p, String s) { in writeString()
148 public void writeString8(Parcel p, String s) { in writeString8()
153 public void writeString16(Parcel p, String s) { in writeString16()
/aosp12/frameworks/base/startop/iorap/src/com/google/android/startop/iorap/
H A DAppLaunchEvent.java120 protected void writeToParcelImpl(Parcel p, int flags) { in writeToParcelImpl()
126 IntentStarted(Parcel p) { in IntentStarted()
146 IntentFailed(Parcel p) { in IntentFailed()
184 BaseWithActivityRecordData(Parcel p) { in BaseWithActivityRecordData()
221 ActivityLaunched(Parcel p) { in ActivityLaunched()
257 ActivityLaunchFinished(Parcel p) { in ActivityLaunchFinished()
298 ActivityLaunchCancelled(Parcel p) { in ActivityLaunchCancelled()
338 ReportFullyDrawn(Parcel p) { in ReportFullyDrawn()
385 protected void writeToParcelImpl(Parcel p, int flags) { in writeToParcelImpl()
389 protected AppLaunchEvent(Parcel p) { in AppLaunchEvent()
[all …]
/ohos5.0/drivers/peripheral/secure_element/test/unittest/mock/
H A Dmock.cpp23 auto p = MockTee::GetMockTee(); in VendorSecureElementCaOnStart() local
32 auto p = MockTee::GetMockTee(); in VendorSecureElementCaInit() local
41 auto p = MockTee::GetMockTee(); in VendorSecureElementCaUninit() local
50 auto p = MockTee::GetMockTee(); in VendorSecureElementCaGetAtr() local
60 auto p = MockTee::GetMockTee(); in VendorSecureElementCaOpenLogicalChannel() local
70 auto p = MockTee::GetMockTee(); in VendorSecureElementCaOpenBasicChannel() local
79 auto p = MockTee::GetMockTee(); in VendorSecureElementCaCloseChannel() local
89 auto p = MockTee::GetMockTee(); in VendorSecureElementCaTransmit() local
/aosp12/frameworks/base/core/tests/coretests/src/android/service/euicc/
H A DEuiccProfileInfoTest.java42 EuiccProfileInfo p = in testWriteToParcel() local
71 EuiccProfileInfo p = in testWriteToParcelNullCarrierId() local
96 EuiccProfileInfo p = in testBuilderAndGetters() local
133 EuiccProfileInfo p = in testBuilder_BasedOnAnotherProfile() local
158 EuiccProfileInfo p = in testBuilder_BasedOnAnotherProfileWithEmptyAccessRules() local
181 EuiccProfileInfo p = in testEqualsHashCode() local
/aosp12/system/bt/stack/hcic/
H A Dhcicmds.cc487 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_inquiry() local
504 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_inq_cancel() local
518 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_per_inq_mode() local
537 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_exit_per_inq() local
551 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_create_conn() local
569 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_disconnect() local
584 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_add_SCO_conn() local
600 BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); in btsnd_hcic_create_conn_cancel() local
1418 BT_HDR* p = (BT_HDR*)buffer; in btsnd_hcic_write_ext_inquiry_response() local
1762 uint8_t* p = param; in btsnd_hcic_read_encryption_key_size() local
[all …]
/aosp12/frameworks/native/libs/binder/tests/
H A DbinderParcelTest.cpp32 Parcel p; in TEST() local
49 Parcel p; in TEST() local
65 Parcel p; in parcelOpSameLength() local
75 parcelOpSameLength([&] (Parcel* p) { in TEST()
77 }, [&] (Parcel* p) { in TEST()
84 parcelOpSameLength([&] (Parcel* p) { in TEST()
86 }, [&] (Parcel* p) { in TEST()
95 parcelOpSameLength([&] (Parcel* p) { in TEST()
97 }, [&] (Parcel* p) { in TEST()
114 parcelOpSameLength([&] (Parcel* p) { in readWriteInverse()
[all …]
/aosp12/packages/modules/Connectivity/tests/common/java/android/net/
H A DIpPrefixTest.java58 IpPrefix p; in testConstructor() local
128 IpPrefix p; in testTruncation() local
228 IpPrefix p = new IpPrefix("2001:db8:f00::ace:d00d/127"); in testContainsInetAddress() local
302 IpPrefix p = new IpPrefix(new byte[4], 0); in testHashCode() local
350 IpPrefix p = new IpPrefix(ipv6bytes, 120); in testMappedAddressesAreBroken() local
361 IpPrefix p; in testParceling() local
/aosp12/hardware/google/graphics/common/memtrack-pixel/core/
H A Dfilesystem.cpp15 bool exists(const path& p) { in exists()
20 bool is_directory(const path& p) { in is_directory()
28 bool is_symlink(const path& p) { in is_symlink()
36 path read_symlink(const path& p) { in read_symlink()
47 std::vector<directory_entry> directory_iterator(const path& p) { in directory_iterator()
/ohos5.0/foundation/resourceschedule/ffrt/src/queue/
H A Dqueue_api.cpp26 inline void ResetTimeoutCb(ffrt::queue_attr_private* p) in ResetTimeoutCb()
42 …ffrt::task_attr_private *p = reinterpret_cast<ffrt::task_attr_private *>(const_cast<ffrt_task_attr… in ffrt_queue_submit_base() local
69 auto p = reinterpret_cast<ffrt::queue_attr_private*>(attr); variable
86 ffrt_queue_attr_t* p = const_cast<ffrt_queue_attr_t*>(attr); variable
101 ffrt_queue_attr_t* p = const_cast<ffrt_queue_attr_t*>(attr); variable
109 ffrt::queue_attr_private* p = reinterpret_cast<ffrt::queue_attr_private*>(attr); variable
121 ffrt_queue_attr_t* p = const_cast<ffrt_queue_attr_t*>(attr); variable
140 ffrt_queue_attr_t* p = const_cast<ffrt_queue_attr_t*>(attr); variable
/aosp12/bionic/libc/platform/bionic/
H A Dmacros.h34 static constexpr uintptr_t align_down(uintptr_t p, size_t align) { in align_down()
38 static constexpr uintptr_t align_up(uintptr_t p, size_t align) { in align_up()
43 static inline T* align_down(T* p, size_t align) { in align_down()
48 static inline T* align_up(T* p, size_t align) { in align_up()
86 static inline uintptr_t untag_address(uintptr_t p) { in untag_address()
95 static inline T* untag_address(T* p) { in untag_address()
/ohos5.0/foundation/resourceschedule/ffrt/src/core/
H A Dtask.cpp73 …sk_handle_t &handle, const ffrt_deps_t *in_deps, const ffrt_deps_t *out_deps, task_attr_private *p) in CreateDelayDeps()
115 auto p = reinterpret_cast<ffrt::task_attr_private *>(attr); variable
136 ffrt_task_attr_t *p = const_cast<ffrt_task_attr_t *>(attr); variable
161 ffrt_task_attr_t *p = const_cast<ffrt_task_attr_t *>(attr); variable
182 ffrt_task_attr_t *p = const_cast<ffrt_task_attr_t *>(attr); variable
203 ffrt_task_attr_t *p = const_cast<ffrt_task_attr_t *>(attr); variable
244 ffrt_task_attr_t *p = const_cast<ffrt_task_attr_t *>(attr); variable
287 …ffrt::task_attr_private *p = reinterpret_cast<ffrt::task_attr_private *>(const_cast<ffrt_task_attr… variable
314 …ffrt::task_attr_private *p = reinterpret_cast<ffrt::task_attr_private *>(const_cast<ffrt_task_attr… variable
558 …ffrt::task_attr_private* p = reinterpret_cast<ffrt::task_attr_private *>(const_cast<ffrt_task_attr… variable

12345678910>>...95